Start Back Next End
  
ZBasic System Library
80
ZBasic Microcontrollers
Console.WriteLine
Type
Special Purpose
Invocation
Console.WriteLine(arg)
Parameter
Method
Type
Description
arg
ByVal
String
A string to send out the console port
Discussion
Console.WriteLine is neither a subroutine nor a function.  It has more in common with ZBasic statements
but it described here for ease of reference.  This special purpose method is useful for outputting
debugging information and other data to Com1 (by default, but see Option Console in the ZBasic
Language Reference Manual).  Note that a carriage return/new line is always output following the string.
When this method is invoked, execution of the current task will not continue and no other task will be
allowed to run until the string’s characters have been transferred to the system output queue.  This caveat
applies separately to the string specified by the parameter and to the end-of-line sequence that is also
output.
Examples
Console.WriteLine("Hello, world! ")
Console.WriteLine("The value is " & CStr(val))
The second example uses the concatenation operator to produce a single string that is passed to the
method.
See Also
Previous page Top Next page