games
pages
posts

iconScratch_Book

http://en.wikipedia.org/wiki/Rule_110
http://en.wikipedia.org/wiki/Tsar_bomb
http://en.wikipedia.org/wiki/List_of_culinary_vegetables
http://mozai.com/writing/not_mine/solresol
Mornington Crescent
alum, vitriol
lilypond
gainsboro

Programming Language

One thing I think it should have is access to parent locals. For example:
def run_game():
    Game game
    handle_player()
def handle_player():
    game.move_unit(...)
In this example, you would of course use a class. But often, it seems references to some quasi-global class a passed around in all sorts of calls, when, from an API point of view, it would be much nicer to just access the variable in the locals stack of the caller. And since in fact, locals are usually implemented in a stack, this would be very easy to do in machine language and also mean a performance gain.