mirror of
https://github.com/samsonjs/compiler.git
synced 2026-03-25 08:45:52 +00:00
5 lines
91 B
Text
5 lines
91 B
Text
a = 0 && 0
|
|
b = 0 && 1
|
|
c = 1 && 0
|
|
d = 1 && 1
|
|
exit_code = !(a == 0 && b == 0 && c == 0 && d)
|