The Glue() function returns the result of the last expression. This function is equivalent to using semicolons. The following expressions both return 3:
The First() function also evaluates each argument sequentially but returns the result of the first expression. The following expression returns 2:
What does First() do in the following script?
The First function returns the value of x (1000). 2000 is then assigned to x.