Implemented package imports
This commit is contained in:
parent
fa373e7dc2
commit
b34470a97d
21 changed files with 510 additions and 353 deletions
|
@ -1,12 +1,14 @@
|
|||
import sys
|
||||
|
||||
main() {
|
||||
x := 0
|
||||
|
||||
if x != x || x != x {
|
||||
exit(1)
|
||||
sys.exit(1)
|
||||
}
|
||||
|
||||
if x != x || x != x || x != x {
|
||||
exit(1)
|
||||
sys.exit(1)
|
||||
}
|
||||
|
||||
if x == x || x != x {
|
||||
|
@ -14,16 +16,12 @@ main() {
|
|||
if x == x || x != x || x != x {
|
||||
if x != x || x == x || x != x {
|
||||
if x != x || x != x || x == x {
|
||||
exit(0)
|
||||
sys.exit(0)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
exit(1)
|
||||
}
|
||||
|
||||
exit(x) {
|
||||
syscall(60, x)
|
||||
sys.exit(1)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue