Created
June 6, 2019 15:02
-
-
Save cutiko/011499413b1bfd922c871c7b383e207b to your computer and use it in GitHub Desktop.
Inifinity is a double
This file contains 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
fun main(args: Array<String>) { | |
System.out.println("Lets buy beer") | |
buyBeer(1.0) | |
buyBeer(2.0) | |
buyBeer("Infinity".toDouble()) | |
} | |
fun buyBeer(beer : Double) = System.out.println("You are buying $beer beers and is more than one beer ${beer > 1}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment