Print itself: Difference between revisions

added python language section
m (→‎{{header|Perl}}: shorter alternative)
(added python language section)
Line 91:
Write-Host $MyInvocation.MyCommand
</lang>
 
=={{header|Python}}==
{{works with|python3}}
<lang python>import sys
with open(sys.argv[0],'r') as input:
for row in input:
print(row, end='')</lang>
 
=={{header|Raku}}==