5.3 控制和循环语句 5.3 控制和循环语句 if 和 while 语句利用 jz 和 jmp 命令就可以实现,首先看 if 语句: TinyC: if ( a > 0 ) { print ( "a is a positive number" ); } else { print ( "a is ...
Conditional compilation Conditional compilation // Support for multiple conditions in one branch $if ios || android { println ( 'Running on a mobile device!' ) } ...