Skip to content
亿科
Main Navigation
主页
工具
Appearance
Return to top
计算器工具
计算器
设置
显示示例
清空
基础运算
1+1
2*3
10/2
2^3
sqrt(16)
sin(30)
cos(60)
log(100)
pi*2
abs(-5)
round(3.14159, 2)
编程结构
x = 5
y = x*2
[[ a=2; b=3; return a+b ]]
[[ print("Hello World") ]]
[[ fact=1; for i=1,5 do fact=fact*i end; return fact ]]