跳到主要内容
MiraScript
入门教程
API 文档
速查手册
在线编辑器
语言参考
关键字
return
return
return
用于从函数中返回值。
fn abs { if it < 0 { return -it; } return it; }
上一页
resume
下一页
true