PRINT causes the list of expressions you give it to be evaluated and printed to the current output device. Expressions may be any of:
Items may optionally be followed immediately by a colon (:) and a FORTRAN format specifier, to control the width of the output field.
Examples:
>> print x
>> print (x/3)
>> print '5 times x = ', 5*x:f10.4
>> print x y(j)
>> print 'This is rachael''s output'