- or download this
import std.file;
...
printf( "\n" );
return 0;
}
- or download this
#include <stdlib.h>
...
printf( "\n" );
return 0;
}
- or download this
for( $i=0; $i<99; $i++ ){
printf( "123456789 " )
...
printf( "xx\t" )
}
printf( "\n" );;
- or download this
print join ' ', ('123456789') x 99;
print join "\t", ('xx') x 125;;