Print Function

Next: , Previous: Openfile, Index: Index

This print[n] function will display n to stdout.

Pass: A variable to display
Returns: Nothing

As the programmer you can pass any values split by , This is important as, often (although not guaranteed) when displaying debugging messages for each process the order of prints might not be deterministic, yet each process should print out a single line of text in the correct order.

Examples

var f:="hello";
var a:=23;
print[f," ", a ," 22\n"];


Last Modified: August 2008