💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## Otne 标记 Otne 程序可以由多个标记组成,可以是关键字,标识符,常量,字符串,符号。如以下 Otne 语句由 6 个标记组成: ~~~otne module net.otne.TerminalScreen; func main() { print("Hello, World !"); TerminalScreen("Hello, World !"); } ~~~ ## Otne 关键字 |关键字|说明|支持| | --- | --- |--- | module|模块|√ import|导入|√ .| | static|静态|√ . | | num|自动数的别称(int 整型/float 浮点型/double 双精度浮点型) |√ uint| uint 整型 |√ int| int 整型 |√ string|字符串|√ func|函数|√ bool|逻辑 / 布尔|√ true|真 (1)|√ false|假 (0)|√ null|空|√ return|返回|√ . | | if|如果|√ elif|如果否则|√ else|否则|√ . | | for|循环/计数循环|√ while|循环/计数循环|√ break|循环结束|√ . | |