Quine: Difference between revisions

no edit summary
(2nd C version.)
No edit summary
Line 424:
The C1R compiler usually copies C solutions from tasks at Rosetta Code. The Quine task is an exception; it gets special treatment in the C1R compiler.
<lang c>Quine</lang>
 
=={{header|Ceylon}}==
<lang ceylon>shared void run() {print(let (x = """shared void run() {print(let (x = $) x.replaceFirst("$", "\"\"\"" + x + "\"\"\""));}""") x.replaceFirst("$", "\"\"\"" + x + "\"\"\""));}</lang>
 
=={{header|Clojure}}==
Anonymous user