8 lines
114 B
JavaScript
Raw Normal View History

2022-01-20 12:06:36 +08:00
// This script runs a complex expression.
2020-05-02 16:23:36 +08:00
print("The result should be 230:");
2020-03-16 14:50:12 +08:00
let x = (12 + 34) * 5;
2021-04-09 22:48:47 +08:00
2020-05-02 16:23:36 +08:00
print(x);