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'],

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