REBOL Document

List? - Function Summary


Summary:

Returns TRUE for list values.

Usage:

list? value

Arguments:

value - The value argument. (must be: any-type)

Description:

Returns FALSE for all other values.


    test-list: make list! [1 2 3 4]
    if list? test-list [print "It's a list."]
    It's a list.

Related:


<Back | Index | Next>

Copyright 2004 REBOL Technologies