add: file content reading
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user