blob: 1d8588c89f164e3ebaa8e242337c6db6ca293898 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# test1
# arithmetic tests
# looking for proper basic function, respect for order of ops,
# and respect for parentheses
2 + 5
14 - 9
3 * 8 + 3
9 - 3 / 2
3 * (8 + 3)
(9 - 3) / 2
(4 + 5) * ((9 - 1) + 3)
5 - 3 + 4
|