Talk:1638: Backslashes
Revision as of 06:14, 3 February 2016 by 173.245.54.29 (talk) (Created page with "It should be noted that this also occurs in almost every programming language where "\" is the escape character. i.e. print("Hello") > Hello print("\"Hello\"") > "Hello" ...")
It should be noted that this also occurs in almost every programming language where "\" is the escape character. i.e.
print("Hello")
> Hello
print("\"Hello\"")
> "Hello"
print("\\Hello\\")
> \Hello\
173.245.54.29 06:14, 3 February 2016 (UTC)
