blob: f836124eda3cefb63949e66cb21e5ff49f3f5b13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# test2
# variable and function tests
# show variable recognition and proper c-function handling
a * 1
3 + b
set(a, 5)
a * 1
set(c, 4)
a / c
set(b, 2) set(d, 8)
d + set(e, 4)
|