yCoord
yCoord(l_list) =>g_result
Description
Returns the tail of the list, that is, the list without its first element.
The xCoord and yCoord functions are aliases for the car and cadr functions
Arguments
Value Returned
|
Returns the end of a list, or the list minus the first element. |
Examples
xValue = 300
yValue = 400
aCoordinate = xValue:yValue
=> ( 300 400 )
xCoord( aCoordinate )
=> 300
yCoord( aCoordinate )
=> 400
Related Topics
Return to top