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