View Problem

Define a static list

Define the list [One, Two, Three, Four, Five]
ExpandDiskEdit
ruby
list = ['One', 'Two', 'Three', 'Four', 'Five']
ExpandDiskEdit
ruby
list = %w(One Two Three Four Five)
DiskEdit
csharp
IList<string> list = new string[]{"One","Two","Three","Four","Five"};
ExpandDiskEdit
erlang
List = [one, two, three, four, five],
ExpandDiskEdit
erlang
List = ['One', 'Two', 'Three', 'Four', 'Five'],
DiskEdit
clojure
(def a '[One Two Three Four Five])

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