Print itself: Difference between revisions

no edit summary
No edit summary
Line 77:
printitself()
</lang>
 
=={{header|Ksh}}==
<lang ksh>
#!/bin/ksh
 
# Program to print it's own source code
 
######
# main #
######
while read line; do
print "${line}"
done < $0</lang>
 
=={{header|Nanoquery}}==
70

edits