Difference between revisions of "Print"

From Mesham
Jump to navigationJump to search
(Created page with '== Overview == This print[n] function will display ''n'' to stdout. The programmer can pass any number of values or variables split by '','' * '''Pass:''' A variable to display…')
(No difference)

Revision as of 22:24, 10 January 2010

Overview

This print[n] function will display n to stdout. The programmer can pass any number of values or variables split by ,

  • Pass: A variable to display
  • Returns: Nothing

Example

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