awtk/tests/fscripts/demo_while2.fs

4 lines
36 B
Forth
Raw Normal View History

2021-01-02 12:36:30 +08:00
a=0
while(a < 10, print(a), a=a+1)