94d2fc1815
* Added nxhtml, mostly for django support. * Changed some org settings.
11 lines
192 B
Python
11 lines
192 B
Python
sender = 'Buffy the Vampire Slayer'
|
|
recipient = 'Spike'
|
|
|
|
print("""\
|
|
Dear %(recipient)s,
|
|
|
|
I wish you to leave Sunnydale and never return.
|
|
|
|
Not Quite Love,
|
|
%(sender)s
|
|
""" % locals())
|