多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
## Otne 判断 Otne 判断使用 * `if` 判断 * `else if` 判断 * `else` 判断 判断例如: 📄`hello.otne` ~~~ module net.otne.TerminalScreen; func main() { bool on = 0; if(on == 1) { printf(x); } else if (on == 0) { printf(x); } else { printf(x); } } ~~~