include "libphp.sol"

array x
array l = ("a", "b")
array c = (1, 2,3,4,5)

for text letter in l ` creating the lines
  array a
  for int col in c      `creating the colons
    a.push(letter + str(c[]))
  /for
  x.push(a)
/for

x.display()