mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-03 20:48:02 +08: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)
|
|
}
|