Skip to content

Instantly share code, notes, and snippets.

@mariszin
Created May 8, 2012 21:17
Show Gist options
  • Save mariszin/2639384 to your computer and use it in GitHub Desktop.
Save mariszin/2639384 to your computer and use it in GitHub Desktop.
Smaidiņš skalā
object TestApp {
def main(args: Array[String]): Unit = {
var Es:Test = new Test();
Es :* "tevi";
}
class Test {
def :*(x:String) {println(x)}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment