Skip to content

Instantly share code, notes, and snippets.

@ans-4175
Created September 8, 2015 06:57
Show Gist options
  • Save ans-4175/c799651a8e757c468efb to your computer and use it in GitHub Desktop.
Save ans-4175/c799651a8e757c468efb to your computer and use it in GitHub Desktop.
Gunakan disini http://www.tutorialspoint.com/compile_scala_online.php, compile lalu execute
object HelloWorld {
def main(args: Array[String]) {
val listKopi = List("Noah’s Barn Coffenery","Two Hands Full","Yellow Truck","Jack Runner Roastery","Kopi Anjis","Blue Doors","Rumah kopi","Cups Coffee & Kitchen","Kopi Lamping","Lacamera Coffee","Two Cents","Kopi Selasar Sunaryo","Kopi Gesang Café","Kedai Kopi Mata Angin","Kopi Ireng","Coffe And John")
val r = scala.util.Random
println(listKopi(r.nextInt(listKopi.size)))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment