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