692
coding chess (lemmy.world)
you are viewing a single comment's thread
view the rest of the comments
[-] oktoberpaard@feddit.nl 18 points 7 months ago

It’s Markdown syntax. You can actually format it nicely in a code block:

bool isEven( long long x ) {
  if ( x < 0 ) x = -x;
  if ( x == 1 )
    return false;
  if ( x == 2 )
    return true;
  return isEven( x - 2 );
}

You do that by adding ``` above and below it. To force single line breaks, you can terminate your sentences with two spaces, or a backslash.

[-] Buddahriffic@lemmy.world 4 points 7 months ago

Ah thank you, the editor in connect isn't great and doesn't have the markdown guide or buttons for the preformatted block, so I couldn't find the character combo to use it (and never would have guessed that lol). Also it keeps giving an error when I edit, though the edit is going through.

this post was submitted on 22 Feb 2024
692 points (96.4% liked)

Programmer Humor

32197 readers
406 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS