Files
2025-09-30 11:56:06 +08:00

9 lines
74 B
GLSL

var a=0
var b=0
while(a < 100) {
a=a+1
b=b+a
print(a, b)
}