Skip to content

Instantly share code, notes, and snippets.

@joshskeen
Last active August 4, 2017 16:21
Show Gist options
  • Save joshskeen/8901ce04543d4f6a9903faa22e8c2035 to your computer and use it in GitHub Desktop.
Save joshskeen/8901ce04543d4f6a9903faa22e8c2035 to your computer and use it in GitHub Desktop.
rename a function in kotlin via import
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