tp-langages-formels/syntaxique/test.my

22 lines
215 B
Plaintext
Raw Normal View History

2020-05-16 00:49:34 +00:00
bool x,y,z;
x := true;
y := true;
z := x <=> y;
print x,y,z;
x := true;
y := false;
z := x <=> y;
print x,y,z;
x := false;
y := true;
z := x <=> y;
print x,y,z;
x := false;
y := false;
z := x <=> y;
print x,y,z