list
list( [g_arg1 g_arg2... ] ) =>l_result/nil
Description
Creates a list with the given elements.
Arguments
Value Returned
Examples
list(1 2 3)
=> (1 2 3)
list('a 'b 'c)
=> (a b c)
Related Topics
Return to top
list( [g_arg1 g_arg2... ] ) =>l_result/nil
Creates a list with the given elements.
list(1 2 3)
=> (1 2 3)
list('a 'b 'c)
=> (a b c)