initial commit
[emacs-init.git] / nxhtml / tests / in / heredoc.py
1 sender = 'Buffy the Vampire Slayer'
2 recipient = 'Spike'
3
4 print("""\
5 Dear %(recipient)s,
6
7 I wish you to leave Sunnydale and never return.
8
9 Not Quite Love,
10 %(sender)s
11 """ % locals())