Skip to content

Commit

Permalink
lib/console.fnc: fixed small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkdoor committed May 25, 2010
1 parent d55a867 commit cde6d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/console.fnc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def class Console {
def self println: obj {
"Prints a given object on STDOUT, followed by a newline.";

Console print: (obj ++ "\n")
Console print: (obj to_s ++ "\n")
}

def self readln: message {
Expand Down

0 comments on commit cde6d86

Please sign in to comment.