RosettaCodeData/Task/Array-concatenation/Amazing-Hopper/array-concatenation.hopper

9 lines
202 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <hbasic.h>
Begin
a1 = {}
a2 = {}
Take(100,"Hola",0.056,"Mundo!"), and Push All(a1)
Take("Segundo",0,"array",~True,~False), and Push All(a2)
Concat (a1, a2) and Print ( a2, Newl )
End