Created
November 30, 2017 19:10
-
-
Save alexcheng1982/2cf86e30a7fb05eba68823ff268e97ab 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) = console.log(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