Skip to content

Instantly share code, notes, and snippets.

@shigemk2
Created January 5, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shigemk2/3834d87a5c9d6aa840d4 to your computer and use it in GitHub Desktop.
Save shigemk2/3834d87a5c9d6aa840d4 to your computer and use it in GitHub Desktop.
val name = "Fred"
val age = 33
val weight = 200.0
println(s"$name is $age years old, and weighs $weight pounds.")
println(s"Age next year: ${age + 1}")
println(s"You are 33 years old: ${age == 33}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment