
Print( "a random pattern:\n" );
n:= SizeScreen()[1] - 2;
choice:= [ "o", "x", " " ];
for i in [ 1 .. 20 ] do
  for j in [ 1 .. n ] do
    Print( Random( choice ) );
  od;
  Print( "\n" );
od;

