Print itself: Difference between revisions

(Added Algol 68)
 
(2 intermediate revisions by 2 users not shown)
Line 81:
</syntaxhighlight>
 
=={{header|Binary Lambda Calculus}}==
The 18 byte BLC program <code>16 46 80 05 bc bc fd f6 80 16 46 80 05 bc bc fd f6 80</code> prints itself.                                                     
=={{header|Ecstasy}}==
<syntaxhighlight lang="java">
Line 258 ⟶ 260:
print(f.read())
</syntaxhighlight>
 
=={{header|Quackery}}==
 
<syntaxhighlight lang="Quackery">[ this echo ]</syntaxhighlight>
 
{{out}}
 
<pre>[ this echo ]</pre>
 
=={{header|Raku}}==
Line 305 ⟶ 315:
 
=={{header|Wren}}==
<syntaxhighlight lang="ecmascriptwren">import "os" for Process
import "io" for File
 
Line 314 ⟶ 324:
Just the invoking line as remainder is, of course, as above.
<pre>
$ wren-cli self_printPrint_itself.wren
</pre>
 
56

edits