this post was submitted on 16 Nov 2024
1118 points (99.1% liked)

Programmer Humor

19804 readers
59 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 32 points 1 month ago* (last edited 1 month ago) (1 children)

\n already is an escape sequence, consisting of \, the escape character, and n, the code that is responsible for the new line. Together they form an escape sequence.

[โ€“] [email protected] 1 points 1 month ago* (last edited 1 month ago)

Sure, but if you don't escape the \ then you likely won't even be able to get the name into the first system. You need the name to contain \n so that it gets passed correctly to other systems, otherwise his name may wind up just being "John" .