企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## Otne 循环 Otne 循环使用 * `for` 循环 * `while` 循环 循环例如: 📄`hello.otne` ~~~ module net.otne.TerminalScreen; func main() { num on = 0; while(on < 20) { TerminalScreen(x); on++; } for(num x = 0; x < 20; x++) { TerminalScreen(x); } } ~~~