Difference between revisions of "MC-Basic:PRINT HASH"

From SoftMC-Wiki
Jump to: navigation, search
Line 39: Line 39:
 
* [[MC-Basic:CLOSE|CLOSE]]
 
* [[MC-Basic:CLOSE|CLOSE]]
 
* [[MC-Basic:INPUT$|INPUT$]]
 
* [[MC-Basic:INPUT$|INPUT$]]
* [[Axystems:MC-Basic:LOC|LOC]]
+
* [[MC-Basic:LOC|LOC]]
  
 
[[Category:Axystems:MC-Basic:File Management|PRINT HASH]]
 
[[Category:Axystems:MC-Basic:File Management|PRINT HASH]]
  
 
}}
 
}}

Revision as of 08:38, 22 May 2014

Multiple strings and expressions are printed to a serial port, separated by either a comma or semicolon. The semicolon puts the two expressions next to each other, while the comma puts a tab between them.

Syntax

PRINT #<DeviceHandle>, “<String>” | [Expression] {, | ; “<String>” | [Expression] }

Availability

All versions

Type

<DeviceHandle>: Long
<string>: String
<expression>: Long, Double, String, Joint or Location

Range

<DeviceHandle>: 1 to 255

Scope

Configuration, Task or Terminal

Limitations

Read only

Examples

Print #1, Nm$, Dept$, Level, Age

See Also