A person that makes something fun.
class Programmer101:
def __init__(self):
self.name = "programmer1o1"
self.role = "Hobby Coder"
self.languages = ["hmmm idk"]
self.fun_fact = "semicolon is real in python by the way"
def say_hi(self):
print("Thanks for dropping by!"); # this works by the way
me = Programmer101()
me.say_hi()
- I code for fun—just a hobbyist exploring the world one line at a time
- Something new to learn? Better try coding it!
- Currently learning: Whatever catches my interest today
while (alive) {
eat();
sleep();
meow();
repeat();
}
semicolon is real in python by the way.
print("Hello"); print("World"); # totally valid Python lol
if (code == "working") {
dont_touch_it();
} else {
console.log("It worked on my machine ¯\_(ツ)_/¯");
}