Difference between revisions of "Io"

From SkyCorp Global
(Created page with "Public Methods")
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
Public Methods
+
NOTE: This class is lowercase, ie: 'io'
 +
 
 +
== Public Methods ==
 +
 
 +
=== static void write(string, ...) ===
 +
Output string to screen.  Does not automatically add newlines.
 +
 
 +
If passed multiple values,this function will print all their contents.  Usually you just want to print one, so [[MainScreen]].addGameText may be a better choice -- especially for evading the [[LUA Implementation Limitations & Notes|LUFA garbage array bug]].
 +
[[Category:LUA Class Reference]]

Latest revision as of 05:47, 30 December 2017

NOTE: This class is lowercase, ie: 'io'

Public Methods

static void write(string, ...)

Output string to screen. Does not automatically add newlines.

If passed multiple values,this function will print all their contents. Usually you just want to print one, so MainScreen.addGameText may be a better choice -- especially for evading the LUFA garbage array bug.