We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de455ae commit 70a96ccCopy full SHA for 70a96cc
Language/Structure/Compound Operators/increment.adoc
@@ -24,8 +24,11 @@ Increments the value of a variable by 1.
24
25
[float]
26
=== Syntax
27
-`x++; // increment x by one and returns the old value of x` +
28
-`++x; // increment x by one and returns the new value of x`
+[source,arduino]
+----
29
+x++; // increment x by one and returns the old value of x
30
+++x; // increment x by one and returns the new value of x
31
32
33
34
0 commit comments