Skip to content

Instantly share code, notes, and snippets.

@ostretsov
Created December 27, 2014 07:10
Show Gist options
  • Save ostretsov/d0db84f85b41668c43bd to your computer and use it in GitHub Desktop.
Save ostretsov/d0db84f85b41668c43bd to your computer and use it in GitHub Desktop.
import ostretsov.Client
object ClientRepository {
def main (args: Array[String]): Unit = {
println(Client.build("Artem Ostretsov", true).id)
println(Client.build("Martin Odersky", true).id)
println(Client.build("Vasya Pupkin", false).id)
println(Client.build("Artem Ostretsov", false).id)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment