Batch Computation

Description:

Compute a series of expressions one by one in an automatic fashion, and return the result of the last expression.

Syntax:

(x1,x2,…,xk)

Note:

The later expressions can reference the variable values computed by the preceding expressions for value assignment.

Parameter:

xk

Expressions you want to compute in batch

Example:

 

A

 

1

=(1,1+2,2+3)

5

2

=(a=1,b=a*3,c=b+5,a+b+c)

12