this post was submitted on 22 Nov 2025
651 points (98.7% liked)

Programmer Humor

27690 readers
289 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
 

cross-posted from: https://lemmy.ml/post/39334581

you are viewing a single comment's thread
view the rest of the comments
[โ€“] luciferofastora@feddit.org 9 points 1 week ago* (last edited 1 week ago)

Naming

Both variables and constants can be named with any Unicode character or string.

const const letter = 'A'!
var const ๐Ÿ‘ = True!
var var 1๏ธโƒฃ = 1!

This includes numbers, and other language constructs.

const const 5 = 4!
print(2 + 2 === 5)! //true

This is a recipe for disaster I kinda wanna try