include "libphp.sol"

array x
text lettre = "a"

for int ligne in 0 .. 1   ` création des lignes
  array a
  int i = 0
  for int col in 1 .. 5      `création des colonnes
    a.push(lettre + str(i))
    i + 1
  /for
  x.push(a)
  int j = ord(lettre) + 1
  lettre = chr(j)
/for

x.display()