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
csharp
string verbatim = @"\#{'}${""""}/";
string cStyle = "\\#{'}${\"\"}/";
ExpandDiskEdit
erlang
Special = "\\#{'}\${\"}/",
ExpandDiskEdit
fantom
special := Str<|\#{'}${"}/|>

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