12 lines
84 B
Plaintext
12 lines
84 B
Plaintext
|
delay2 -> -a.
|
||
|
|
||
|
a :- x, not b.
|
||
|
|
||
|
delay1.
|
||
|
delay2 :- delay1.
|
||
|
|
||
|
x :- not y.
|
||
|
y :- not x.
|
||
|
|
||
|
|