Quine: Difference between revisions

Content deleted Content added
Not a robot (talk | contribs)
Add Draco
Ken (talk | contribs)
Line 3,909:
(newline included)
<lang swift>let x = ["let x =", ";print(x[0], x, x[1])"] ;print(x[0], x, x[1])</lang>
based on the above, but pass swift-format
<lang swift>
let x = ["let x = ", "\nprint(x[0], x, x[1], separator: String())"]
print(x[0], x, x[1], separator: String())
</lang>
 
=={{header|Tcl}}==