Created
January 2, 2019 16:39
-
-
Save an0/6e018ab5c5c193c2b6af4ebc784cbeed to your computer and use it in GitHub Desktop.
Swift Quine without debugDescription
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let q = Unicode.Scalar(34)! | |
let s = | |
""" | |
print("let q = Unicode.Scalar(34)!") | |
print("let s =") | |
print(q, q, q, separator: "") | |
print(s) | |
print(q, q, q, separator: "") | |
print(s) | |
""" | |
print("let q = Unicode.Scalar(34)!") | |
print("let s =") | |
print(q, q, q, separator: "") | |
print(s) | |
print(q, q, q, separator: "") | |
print(s) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment