Created
November 30, 2017 19:09
-
-
Save alexcheng1982/5d6a8e2c6baab69825607484a10865af to your computer and use it in GitHub Desktop.
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
package calculator | |
actual fun log(msg: String) = System.out.println(msg) | |
fun main(args: Array<String>) { | |
Calculator.add(1, 2) | |
Calculator.subtract(1, 2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment