REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 3-Aug-2010 Edit History  

REBOL 3 Functions: second

second  value

Returns the second value of a series.

Arguments:

value

See also:

pick   first   third   fourth   fifth  

Description

An error will occur if no value is found. Use the PICK function to avoid this error.

print second "REBOL"
E
print second [11 22 33 44 55 66]
22
print second 12-jun-1999
6
print second 199.4.80.1
4
print second 12:34:56.78
34


  TOC < Back Next > REBOL.com - WIP Wiki Feedback Admin