Previous Up Next

Example.

Input:

nodisp(a:= 2+2)

Output:

Done

and a will be set to 4.


An alternate way of suppressing the output is to end the input with :;.

Example.

Input:

b:= 3+3:;

Output:

Done

and b will be set to 6.


Previous Up Next