mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-03 20:48:02 +08:00
10 lines
82 B
Forth
10 lines
82 B
Forth
|
var a = 1;
|
||
|
if(a == 1) {
|
||
|
print("return");
|
||
|
return;
|
||
|
} else {
|
||
|
print("end");
|
||
|
}
|
||
|
|
||
|
|