RosettaCodeData/Task/Array-concatenation/EasyLang/array-concatenation.easy

6 lines
76 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
a[] = [ 1 2 3 ]
b[] = [ 4 5 6 ]
c[] = a[]
2025-06-11 20:16:52 -04:00
for h in b[] : c[] &= h
2023-07-01 11:58:00 -04:00
print c[]