Created
September 28, 2014 18:37
-
-
Save ntakouris/4cf4e69cf6a4a2d10692 to your computer and use it in GitHub Desktop.
Dis is yours fleva
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
object main { | |
def main(args: Array[String]){ | |
println("Insert price here:"); | |
val price = Console.readInt; | |
println("20% of inserted price is: " + (price * 20 / 100)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment