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