Quine: Difference between revisions

(Added EasyLang implementation)
Line 3,683:
<syntaxhighlight lang="ring">v = "see substr(`v = ` + char(34) + `@` + char(34) + nl + `@` ,`@`,v)"
see substr(`v = ` + char(34) + `@` + char(34) + nl + `@` ,`@`,v)</syntaxhighlight>
 
=={{header|RPL}}==
RPL programs are stored in RAM as a specific data structure, and can then be recalled the same way as an ordinary variable.
{{works with|Halcyon Calc|4.2.7}}
≪ 'QUINE' RCL ≫
'QUINE' STO
QUINE
{{out}}
<pre>
1: ≪ 'QUINE' RCL ≫
</pre>
 
=={{header|Ruby}}==
Line 3,710 ⟶ 3,722:
 
As the above implementation depends on the code being saved in a file, it doesn’t work in IRB.
 
 
=={{header|Rust}}==
1,150

edits