Files
shiro/examples/print.sr
T
2026-08-23 12:24:48 +05:30

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);
}