prog1
prog1(g_expr1[g_expr2... ] ) =>g_result
Description
Evaluates expressions from left to right and returns the value of the first expression. This is a syntax form.
Arguments
Value Returned
Examples
The following example returns the value of the first expression.
prog1(
x = 5
y = 7 )
=> 5
Related Topics
Function and Program Structure
Return to top