mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-01 11:39:01 +08:00
9 lines
144 B
GLSL
9 lines
144 B
GLSL
function 计算总价(数量, 单价) {
|
|
return 数量*单价;
|
|
}
|
|
|
|
var 数量=100
|
|
var 单价=20
|
|
|
|
print("总价:", 计算总价(数量, 单价))
|