old-trainOS/scripts/main.cu

14 lines
185 B
Text
Raw Permalink Normal View History

2015-10-10 22:45:02 +00:00
NATIVE print(...);
NATIVE shutdown();
PUB main() | i : INT
BEGIN
2015-10-10 22:45:02 +00:00
print("Hello World!\n");
2015-10-14 19:09:34 +00:00
1 → i;
WHILE i <= 5 DO
2015-10-10 22:45:02 +00:00
print(i, "\n");
(i + 1) → i;
END
END