This website requires JavaScript.
Explore
Help
Register
Sign In
test
/
awtk
Watch
1
Star
0
Fork
0
You've already forked awtk
mirror of
https://gitee.com/zlgopen/awtk.git
synced
2024-12-05 05:27:58 +08:00
Code
Issues
Actions
2
Packages
Projects
Releases
Wiki
Activity
e44c21b9ff
awtk
/
tests
/
fscripts
/
demo_while4.fs
14 lines
106 B
Forth
Raw
Normal View
History
Unescape
Escape
improve fscript samples
2022-08-23 11:21:48 +08:00
var
a=0
var
b=0
fscript support continue/break
2021-01-02 23:07:37 +08:00
while(a
<
100
)
{
a=a+1
b=b+a
if(a
>
20
)
{
break;
}
print(a,
b)
}
print(b)
Reference in New Issue
Copy Permalink