Print itself: Difference between revisions

m
→‎{{header|REXX}}: added the REXX computer programming language for this task.
No edit summary
m (→‎{{header|REXX}}: added the REXX computer programming language for this task.)
Line 60:
$ go run self_print.go
</pre>
 
=={{header|REXX}}==
<lang rexx>/*REXX program prints its own multi─line source to the standard output (stdout). */
 
do j=1 for sourceline()
call lineout , sourceline(j)
end /*j*/ /*stick a fork in it, we're all done. */</lang><br><br>
 
=={{header|Wren}}==