class MAIN is main is a :ARRAY{STR} := |"a", "b", "c"|; b :ARRAY{STR} := |"A", "B", "C"|; c :ARRAY{STR} := |"1", "2", "3"|; loop i ::= 0.upto!(2); #OUT + a[i] + b[i] + c[i] + "\n"; end; end; end;