Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
finally eliminate a silly TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
gavinking committed Jan 28, 2014
1 parent 11acfd7 commit 14cf488
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions language/src/ceylon/language/print.ceylon
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
process.writeLine(line?.string else \"<null>\")
and is intended mainly for debugging purposes."
// FIXME: see https:/ceylon/ceylon-spec/issues/694
//see (`process.writeLine`)
see (`function process.writeLine`)
by ("Gavin")
shared void print(Anything val) =>
process.writeLine(stringify(val));
shared void print(Anything val)
=> process.writeLine(stringify(val));

"Print multiple values to the standard output of the virtual
machine process as a single line of text, separated by a
given character sequence."
by ("Gavin")
see (`function process.write`)
shared void printAll({Anything*} values,
"A character sequence to use to separate the values"
String separator=", ") {
Expand Down

0 comments on commit 14cf488

Please sign in to comment.