Skip to content

Commit d9d2f10

Browse files
committed
test acorn
1 parent 60aab9c commit d9d2f10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/tutorials/generic/language-comparison/language-comparison.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ The Arduino language (based on Wiring) is implemented in C/C++, and therefore ha
1212
|Arduino|Processing|Python|
1313
|-|-|-|
1414
|int bar[8];<br/>bar[0] = 1;|int[] bar = new int[8];<br/>bar[0] = 1;||
15-
|int foo[] = { 0, 1, 2 };| int foo[] = { 0, 1, 2 }; <br/> or <br/>int[] foo = { 0, 1, 2 };||
15+
|int foo[] = \{ 0, 1, 2 };| int foo[] = \{ 0, 1, 2 }; <br/> or <br/>int[] foo = \{ 0, 1, 2 };||
1616

1717
## Loops
1818

1919
|Arduino|Processing|Python|
2020
|-|-|-|
21-
|int i;<br/>for (i = 0; i < 5; i++) { ... }| for (int i = 0; i < 5; i++) { ... }||
21+
|int i;<br/>for (i = 0; i < 5; i++) \{ ... }| for (int i = 0; i < 5; i++) \{ ... }||
2222

2323
## Printing
2424

0 commit comments

Comments
 (0)