Initial commit
This commit is contained in:
14
tests/print_equals.eln
Normal file
14
tests/print_equals.eln
Normal file
@ -0,0 +1,14 @@
|
||||
begin
|
||||
writeb(5 = 5);
|
||||
writeb(5 = 4);
|
||||
writeb(5 /= 4);
|
||||
writeb(5 /= 5);
|
||||
writeb(5 < 4);
|
||||
writeb(4 < 5);
|
||||
writeb(5 >= 4);
|
||||
writeb(4 >= 5);
|
||||
writeb(5 > 4);
|
||||
writeb(4 > 5);
|
||||
writeb(5 <= 4);
|
||||
writeb(4 <= 5)
|
||||
end.
|
Reference in New Issue
Block a user