View Problem

Define a string containing special characters

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

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