include "libphp.sol"

array x
text letter = "a"

for int ligne in 0 .. 1   ` creting the lines
  array a
  int i = 0
  for int col in 1 .. 5      `creating the colons
    a.push(letter + str(i))
    i + 1
  /for
  x.push(a)
  int j = ord(letter) + 1
  letter = chr(j)
/for

x.display()