Conflating us again with iPad kids?
Programmer Humor
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
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
Just wait till they get Lemmy on their iPads
Shoutout.SpillTea🤣
Well. I think I'm officially out of touch with the newest generations slang terms. I only understood about half of that.
Now I wanna see this in jive
I don’t get the joke. Is the one on the left actually valid C# code?
C# is basically Java and from what I can tell, this looks approximately valid.
Variables can always* be named freely to your liking.
*You used to have to stick to the Latin alphabet, but that’s increasingly not the case anymore. Emoji-named variables FTW!
It looks valid but vibe isn’t declared anywhere so it won’t compile.
Why does the bool have brackets? I haven't really used c#, seems odd
It's a method definition. C#'s standard formatting puts the left ~~bracket~~ brace of the method body on a new line. It's equivalent to:
private bool IsSus(){
...
}
Ahhh, that makes way more sense. Thanks