2025-05-24 22:13:16 +01:00

16 lines
170 B
Plaintext

# program performs boolean operations on arrays
# Output:
# #semantic_error#
# Exit:
# 200
# Program:
begin
int[] x = [1,2];
int[] y = [3,4];
println x > y
end