View Problem

Define a string containing special characters

Define the literal string "\#{'}${"}/"
ExpandDiskEdit
csharp
string verbatim = @"\#{'}${""""}/";
string cStyle = "\\#{'}${\"\"}/";
ExpandDiskEdit
erlang
Special = "\\#{'}\${\"}/",
ExpandDiskEdit
cpp
std::string special = "\\#{'}${\"}/";
ExpandDiskEdit
cpp C++/CLI .NET 2.0
String^ special = L"\\#{'}${\"}/";
ExpandDiskEdit
fsharp
let special = "\#{'}${\"}/"

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