Last active
August 4, 2017 16:21
-
-
Save joshskeen/8901ce04543d4f6a9903faa22e8c2035 to your computer and use it in GitHub Desktop.
rename a function in kotlin via import
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
import util.someFunc as heyBoysHeyGirls | |
import util.someFunc as superStarDJs | |
fun main(args: Array<String>) { | |
heyBoysHeyGirls(x = "here we go") | |
superStarDJs(x = "here we go") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment