Skip to content

Instantly share code, notes, and snippets.

@nowelium
Created July 29, 2010 02:46
Show Gist options
  • Save nowelium/497092 to your computer and use it in GitHub Desktop.
Save nowelium/497092 to your computer and use it in GitHub Desktop.
// io like println
class ConsolePrint(o:Any) {
def println = { Console.println(o) }
}
implicit def thisPrintln(n:Any) = { new print(n) }
"hello world" println // => "hello world"
(123 * 456) println // => 56088
@nowelium
Copy link
Author

scala - io like method

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment