Skip to content

Instantly share code, notes, and snippets.

View LastContrarian's full-sized avatar

LastContrarian

View GitHub Profile
@LastContrarian
LastContrarian / ImplicitParamTest.scala
Created August 15, 2011 20:27
Attempts at simulating a function literal with an implicit parameter
object ImplicitParamTest
{
trait Logger
{
def open()
def log(message:String)
def close()
}
final class ConsoleLogger extends Logger