mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 19:18:53 +08:00
12 lines
136 B
GLSL
12 lines
136 B
GLSL
a=random(1, 100)
|
|
b=random(1, 100)
|
|
|
|
print("a is ", a);
|
|
print("b is ", b);
|
|
|
|
if(a < b) {
|
|
print(a, "<", b)
|
|
} else {
|
|
print(a, ">=", b)
|
|
}
|