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

8 lines
78 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[]
for h in b[]
c[] &= h
.
print c[]