mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
14 lines
106 B
GLSL
14 lines
106 B
GLSL
var a=0
|
|
var b=0
|
|
|
|
while(a < 100) {
|
|
a=a+1
|
|
b=b+a
|
|
if(a > 20) {
|
|
break;
|
|
}
|
|
print(a, b)
|
|
}
|
|
print(b)
|
|
|