#!/usr/bin/earl #x=0; #y=0; while(#x !=10 { while(#y!=10) { #y = #y+1; print #y; } #x = #x+1; print #x; } #!/end