How to add your knowledge

first()

    Table of contents
    1. 1. Synopsis
    2. 2. Syntax
    3. 3. Example 1
    4. 4. Example 2

    Synopsis

    Returns the first item in a list. If list is empty, NoValue is returned.

    Syntax

    first ( list As List ) As Any 
    Argument Type Description
    list list Original list

    Example 1

    Intent >first({5, 3, 6}) 
    --> 5 

    Example 2

    Intent >first({}) 
    --> NoValue