Previous Up Next

Example

Input:

T:=table(3=-10,"a"=10,"b"=20,"c"=30,"d"=40):;

Input:

T["b"]

Output:

20

Input:

T[3]

Output:

−10


Remark.
Tables can be created and the elements of a table can be changed using the := assignment.


Previous Up Next