企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## bplm 循环 * `for` 循环 * `while` 循环 循环例如: 📄`hello.bplm` ~~~bplm plug "stdio" for(num x = 0; x < 20; x++) print(x) while(true) print("true") ~~~