View Problem

Fetch an element of a list by index

Given the list [One, Two, Three, Four, Five], fetch the third element ('Three')
DiskEdit
perl
qw(One Two Three Four Five)[2];
DiskEdit
perl
@list = qw(One Two Three Four Five);
$list[2];

Submit a new solution for perl
There are 23 other solutions in additional languages (clojure, cpp, csharp, erlang ...)