Core Function Println
From Sputnik Wiki
(Difference between revisions)
UberFoX (Talk | contribs)
(Created page with "<pre> Println( <expression> ) </pre> === Description === Prints an expressions string value to the console window and inserts a newline charactor at the end === Parameters ===...")
Newer edit →
(Created page with "<pre> Println( <expression> ) </pre> === Description === Prints an expressions string value to the console window and inserts a newline charactor at the end === Parameters ===...")
Newer edit →
Revision as of 11:42, 29 November 2011
Println( <expression> )
Contents |
Description
Prints an expressions string value to the console window and inserts a newline charactor at the end
Parameters
Expression
The expression to print.
Return Value
None
Remarks
All values including Ints will be printed as if it was a string.
Example
println("Line 1"); println("Line 2"); println("Line 3");