Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating resource.
Please try to avoid dependencies to third-party libraries and frameworks.
(def x (last items))
(def x (peek items))
var x = items[items.Count-1];
int[42] items; int x = items[$-1];
x = items.last;
x = List.last(items)
x = lists:last(items),
x = items(ubound(items,1))
x := items[len(items)-1]
foo :: [a] -> Maybe a foo [] = Nothing foo xs = Just $ last xs x = foo items
x = last items
const x = items[items.length - 1];
int x = items[items.length - 1];
var x = items.last()
local x = items[#items]
$x = $items[array_key_last($items)];
$x = end($items);
x := items[high(items)];
my $x = $items[-1];
my $x = $items[$#items];
x = items[-1]
x = items[-1]
x = items.last
let x = items.last().unwrap();
let x = items[items.len()-1];
val x = items.takeRight(1)
Dim ItemList As New List(Of String)(New String() {"one", "two", "three"}) Console.WriteLine(ItemList.Last)