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 "\\#{'}${\"}/")
ExpandDiskEdit
fsharp
let special = "\#{'}${\"}/"

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