Hello world/Line printer: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 564:
 
<lang locobasic>10 PRINT #8, "Hello World!"</lang>
 
=={{header|M2000 Interpreter}}==
<lang M2000 Interpreter>
Printer {
\\ just change the current layer to Print Page
\\ Using Layer { } we can change to basic console layer inside any layer
Print "Hello World!" \\ printing on columns, in various ways defined by last $() for specific layer
Print $(4),"Hello World!" \\ proportional printing using columns, expanded to a number of columns as the length of string indicates.
Report "Hello World!" \\ proportional printing with word wrap, for text, can apply justification and rendering a range of text lines
}
</lang>
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
Anonymous user