Created
December 27, 2014 07:10
-
-
Save ostretsov/d0db84f85b41668c43bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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