Reports a reversed copy of the given list or string.
show mylist ;; mylist is [2 7 4 "Bob"] set mylist reverse mylist ;; mylist now is ["Bob" 4 7 2] show reverse "live" => "evil"
Take me to the full NetLogo Dictionary