8 lines
144 B
Text
8 lines
144 B
Text
? arithEvaluate("1 + 2")
|
|
# value: 3
|
|
|
|
? arithEvaluate("(1 + 2) * 10 / 100")
|
|
# value: 0.3
|
|
|
|
? arithEvaluate("(1 + 2 / 2) * (5 + 5)")
|
|
# value: 20.0
|