mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 20:18:22 +08:00
14 lines
98 B
GLSL
14 lines
98 B
GLSL
a=0
|
|
b=0
|
|
|
|
while(a < 100) {
|
|
a=a+1
|
|
b=b+a
|
|
if(a > 20) {
|
|
break;
|
|
}
|
|
print(a, b)
|
|
}
|
|
print(b)
|
|
|