Conditional compilation Compile time code $if condition $embed_file $tmpl for embedding and parsing V template files $env $compile_error and $compile_warn Environment s...
2.4 控制及循环语句 2.4 控制及循环语句 TinyC 仅支持 if/else 和 while 语句, while 循环中支持 continue 和 break 。不支持 for 、 switch 、 goto 等其他语句。if/else 和 while 的执行体必须用花括号括起来。如: if ( x > 0 ) y = 1 ...