Function head() returns the first element of the list, namely, the element with index [0].
head()
[0]
Arguments:
Returns:
Example: Calculate the first element of [1,2,3]
UQLreturn head([1,2,3])
return head([1,2,3])
Result1
1