summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/in/heredoc.py
blob: aaa847f7bb22fc629b27c6afb48b26d2bf9d2bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
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())