mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00: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)
|
|
}
|