Skip to content

Instantly share code, notes, and snippets.

@emregoren
Last active February 14, 2020 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emregoren/a3db4723d95cba0e76ed992add9ed4a8 to your computer and use it in GitHub Desktop.
Save emregoren/a3db4723d95cba0e76ed992add9ed4a8 to your computer and use it in GitHub Desktop.
fun main() {
val test = Test()
test ekranaYaz "selam"
}
class Test {
infix fun ekranaYaz(metin: String) {
return print(metin)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment