Next:
Command Editing and History
Up:
Using Shang as a
Previous:
Define Variables
Unwanted Printing
Usually the result of a command is displayed after
Enter
is hit.
>> h = 1.25 1.25
To prevent this, a semicolon can be appended. By suppressing unwanted displays, the command window can be kept cleaner and the program may run more efficiently.
>> h = 1.25; >> // nothing is displayed here
oz 2009-12-22