mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 20:18:22 +08:00
9 lines
58 B
Forth
9 lines
58 B
Forth
|
a=0
|
||
|
b=0
|
||
|
|
||
|
while(a < 100) {
|
||
|
a=a+1
|
||
|
b=b+a
|
||
|
print(a, b)
|
||
|
}
|