13 lines
214 B
Plaintext
13 lines
214 B
Plaintext
main() {
|
|
uint8 x = 0;
|
|
if x > 0 {
|
|
print("Hello World, x is zero");
|
|
} else {
|
|
print("Hello World, x is %", x);
|
|
}
|
|
|
|
while x < 10 {
|
|
x++;
|
|
}
|
|
print("x is % now", x);
|
|
} |