xCoord
xCoord(l_list) =>g_result
Description
Returns the first element of a list. Does not modify the argument list.
The xCoord and yCoord functions are aliases for the car and cadr functions.
Arguments
Value Returned
Examples
xValue = 300
yValue = 400
aCoordinate = xValue:yValue
=> ( 300 400 )
xCoord( aCoordinate )
=> 300
yCoord( aCoordinate )
=> 400
Related Topics
Return to top