Print (statement)

<< Click to Display Table of Contents >>

Print (statement)

Print Expression [, ...]

Outputs data in BasicMaker's output window.

An additional output window pane will appear in BasicMaker automatically for that purpose (unless already present).

See also: MsgBox, Print #

Example:

Sub PrintExample

 Dim Pi

 Pi = 4 * Atn(1)     ' Calculate Pi

 Print Pi

End Sub