mirror of
https://github.com/samsonjs/compiler.git
synced 2026-03-25 08:45:52 +00:00
5 lines
64 B
Text
5 lines
64 B
Text
a = 4 | 7 # 7
|
|
b = 4 ^ 7 # 3
|
|
c = 4 & 7 # 4
|
|
exitcode = a - b - c
|
|
|