File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Language/Structure/Further Syntax Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ Os usos principais das chaves são listados nos exemplos abaixo.
42
42
[source,arduino]
43
43
----
44
44
void minhafuncao(tipo argumento) {
45
- comando(s)
45
+ // comando(s)
46
46
}
47
47
----
48
48
[%hardbreaks]
@@ -54,15 +54,15 @@ void minhafuncao(tipo argumento) {
54
54
[source,arduino]
55
55
----
56
56
while (expressão boolena) {
57
- comando(s)
57
+ // comando(s)
58
58
}
59
59
60
60
do {
61
- comando(s)
61
+ // comando(s)
62
62
} while (expressão boolena);
63
63
64
64
for (inicialização; condição; incremento) {
65
- comando(s)
65
+ // comando(s)
66
66
}
67
67
----
68
68
[%hardbreaks]
@@ -76,14 +76,14 @@ for (inicialização; condição; incremento) {
76
76
[source,arduino]
77
77
----
78
78
if (expressão boolena) {
79
- comandos (s)
79
+ // comando (s)
80
80
}
81
81
82
82
else if (expressão boolena) {
83
- comandos (s)
83
+ // comando (s)
84
84
}
85
85
else {
86
- comandos (s)
86
+ // comando (s)
87
87
}
88
88
----
89
89
[%hardbreaks]
You can’t perform that action at this time.
0 commit comments