Print

From Mesham
Revision as of 22:24, 10 January 2010 by Polas (talk | contribs) (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…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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"];