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

REBOL 3 Functions: third

third  value

Returns the third value of a series.

Arguments:

value

See also:

first   second   fourth   fifth   pick  

Description

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

print third "REBOL"
B
print third [11 22 33 44 55 66]
33
print third 12-jun-1999
12
print third 199.4.80.1
80
print third 12:34:56.78
56.78


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