duplicate lines by mskzzzz

use std.textio.all;entity z is end;architecture behavior of z is
begin process
variable l:line;begin
readline(input,l);write(l,LF&l.all);writeline(output,l);end process;end;

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page