Skip to content

Instantly share code, notes, and snippets.

@khannedy
Created September 4, 2013 00:35
Show Gist options
  • Save khannedy/6431411 to your computer and use it in GitHub Desktop.
Save khannedy/6431411 to your computer and use it in GitHub Desktop.
if expression di scala
@Test
def testIfExpression() {
val name = "Eko"
val status = if (name == "Eko") "Akses Diterima" else "Akses Ditolak"
println(status)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment