Skip to content

Instantly share code, notes, and snippets.

@emregoren
Last active February 14, 2020 10:06
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/8f9f03d5adb76bc0e74630a2f7018d23 to your computer and use it in GitHub Desktop.
Save emregoren/8f9f03d5adb76bc0e74630a2f7018d23 to your computer and use it in GitHub Desktop.
fun main() {
3.topla(5)
}
fun Int.topla(sayi: Int) {
return println(this + sayi)// this =3 , sayi=5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment