awtk/tests/fscripts/demo_return.fs

10 lines
82 B
Forth
Raw Normal View History

2021-02-19 10:12:15 +08:00
var a = 1;
if(a == 1) {
print("return");
return;
} else {
print("end");
}