Here's my implementation of
>>1. It's the forced indentation of code, without statements and a couple tweaks. I call this language "Understatement", and I fap to it every night. No such thing as public or private access, and I'm guesssing what die does there.
say = print
Thing = class (object):
__init__ = lambda self, pub:
self.pub = pub
hai = lambda: #Static method if no self
lambda: say('Hai.')
die = lambda: die() #Note: this hangs, but doesn't run out of stack space
Thing.hai = lambda: pass
str.makeAwesome = lambda self: self = "Awesome!"
str.__int__ = lambda: 5
Thing.hai()()
str('Hai!') == 'Hai'
say('Lol'.makeAwesome())
say(int("Num") + 5)