include "libphp.sol"

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

for text lettre in l ` création des lignes
  array a
  for int col in c      `création des colonnes
    a.push(lettre + str(c[]))
  /for
  x.push(a)
/for

x.display()