mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-15 19:08:54 +00:00
25 lines
228 B
Forth
25 lines
228 B
Forth
|
|
//it is a line comment
|
||
|
|
//it is a line comment
|
||
|
|
|
||
|
|
if(1 < 2) {
|
||
|
|
print("yes");
|
||
|
|
//it is a line comment
|
||
|
|
}
|
||
|
|
|
||
|
|
assert(sum(1,1) == 2)
|
||
|
|
|
||
|
|
/*
|
||
|
|
*
|
||
|
|
* block1
|
||
|
|
*/
|
||
|
|
|
||
|
|
assert(sum(1,3) == 4)
|
||
|
|
/*
|
||
|
|
block2
|
||
|
|
*/
|
||
|
|
|
||
|
|
/**/
|
||
|
|
/*block3*/
|
||
|
|
|
||
|
|
assert( sum(1,2) == 3)
|