function
boot.janet on line 838 , column 1
(last xs )
Get the last element from an indexed data structure.
(last :hello )
# => 111
(last 'hello )
# => 111
(last "hello" )
# => 111
(last [1 1 2 3 5 8 ])
# => 8