6 lines
93 B
Text
6 lines
93 B
Text
iterate (x; [0...4])
|
|
{
|
|
iterate (y; [0...x])
|
|
print("*");;
|
|
print("\n");
|
|
};
|