mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 19:18:53 +08:00
9 lines
58 B
GLSL
9 lines
58 B
GLSL
a=0
|
|
b=0
|
|
|
|
while(a < 100) {
|
|
a=a+1
|
|
b=b+a
|
|
print(a, b)
|
|
}
|