awtk/tests/fscripts/demo_while1.fs
2022-08-23 11:21:48 +08:00

9 lines
66 B
GLSL

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