Last active
May 23, 2018 17:53
-
-
Save milseman/869818d44635d6773a66a10bf638f170 to your computer and use it in GitHub Desktop.
Whitespace visibility example
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 str1 = "a\u{1680}b" | |
let str2 = "a\u{0020}b" | |
print(str1) // "a b" | |
print(str2) // "a b" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment