合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
## 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); } } ~~~