println("I start program by assigning 0 to x"); x = 0; println("Then I declare a table, which is not obligatory"); array t[100]; println("After that I fill the table like that:"); while (x < 100) { print("Index: ", x); t[x] = 3*x; println(", value: ", t[x]); x = x + 1; } println("Pretty simple isn't it?");