Previous Up Next

25.2.6  Printing

The print or Disp command prints in a special pane called message area, located between input and output panes of a command line entry (the text is shown in green).

Examples

print("Hello")

Hello

     
1           
a:=12 print("a=",a)
     
 “a=,12”         
 1          

The ClrIO command erases printing on the level it was typed.

Example

print("Hello"); ClrIO
     
(1,1)           

Previous Up Next