Category talk:Wren-fmt: Difference between revisions

Content deleted Content added
PureFox (talk | contribs)
→‎Source code: Made plural format more versatile.
PureFox (talk | contribs)
→‎Source code: Added some convenience methods to Fmt class.
Line 945:
static print(fmt, a1) { System.print(slwrite(fmt, [a1])) }
static lprint(fmt, a) { System.print(slwrite(fmt, a)) }
 
// Synomyms (useful for alignment) of corresponding methods in System class.
static write(object) { System.write(object) }
static writeAll(sequence) { System.writeAll(sequence) }
static print() { System.print() }
static print(object) { System.print(object) }
static printAll(sequence) { System.printAll(sequence) }
 
// Prints (with a following \n) a sequence 'a' to stdout in tabular form
Return to "Wren-fmt" page.