Category talk:Wren-fmt: Difference between revisions

→‎Source code: Added some convenience methods to Fmt class.
(→‎Source code: Made plural format more versatile.)
(→‎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
9,485

edits