ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## bplm 基础语法 ### bplm 注释 bplm 中的注释有单行注释和多行注释 注释一两种: * `//` 单行注释 * `/*...*/` 多行注释 注释例如: 📄`hello.bplm` ~~~bplm // print("Hello World") /* print("Hello World") */ print("Hello World") ~~~ ### bplm 关键字 ~~~ plug "name" //导入文件、库 // 块体 func name(...) xxxx() if(rt == 0) xxxx() else if(rt == 1) xxxx() for(num x = 0; x < 20; x++) xxxx() while(true) xxxx() num name(num x) return x + 5 string name(string x) return x + "0" // 变量语法 var xxx = null num xxx = 1024 num xxx = 10.24 num xxx = 0xFF string xxx = "xxx" string xxx = 'x' bool xxx = true bool xxx = false ~~~