Files
luban-lite-t3e-pro/packages/third-party/awtk-ui/awtk/tests/fscripts/demo_comments.fs

25 lines
228 B
Forth
Raw Normal View History

2023-11-09 20:19:51 +08:00
//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)