Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Submitted on June 1, 2016 at 12:33 PM

Section 1 (Python)

from collections import namedtuple

def literalstruct(name, **kv):
    o = type(name, (), {})()
    o.__dict__.update(kv)
    return o

Animal = namedtuple('Animal',
    [ 'species', 'name', 'call' ])

Facility = namedtuple('Facility', [
    'director',
    'phone',
    'animals'
])

def bark(): return "barks and jumps"

def meow(): return "meow"

City = literalstruct('City',
        zoo = Facility(
            'Vasiliy Pupkin',
            '111-22-33', [
                Animal('dog', 'Spotty', bark),
                Animal('dog', 'Fido', bark)
            ]
        ),
        circus = Facility(
            'John Jackson',
            '111-37-13', [
                Animal('cat', 'Mittens', meow)
            ]
        )
)

def everyone(group):
    for a in group:
        print("%s: %s" % (a.name, a.call()))

everyone(City.zoo.animals)
everyone(City.circus.animals)