add: file content reading

This commit is contained in:
2026-08-23 12:24:48 +05:30
parent 2df711afcd
commit dd48c9dfe3
4 changed files with 136 additions and 2 deletions
+13
View File
@@ -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);
}