awtk/tests/fscripts/demo_while1.fs
2021-01-07 15:14:14 +08:00

9 lines
58 B
GLSL

a=0
b=0
while(a < 100) {
a=a+1
b=b+a
print(a, b)
}