View Problem

Define a string containing special characters

Define the literal string "\#{'}${"}/"
DiskEdit
python
# yes, Python has way too many forms of string literals :)
print "\\#{'}${\"}/"
print "\\#{'}${"'"'"}/"
print r"""\#{'}${"}/"""
print '\\#{\'}${"}/'
print '\\#{'"'"'}${"}/'
print r'''\#{'}${"}/'''
ExpandDiskEdit
erlang
Special = "\\#{'}\${\"}/",
DiskEdit
clojure
(def special "\\#{'}${\"}/")

Submit a new solution for python, erlang, or clojure
There are 20 other solutions in additional languages (cpp, csharp, fantom, fsharp ...)