Skip to content

Instantly share code, notes, and snippets.

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 droid-lover/cfcb6ca4dbeb32981b7712f01489a906 to your computer and use it in GitHub Desktop.
Save droid-lover/cfcb6ca4dbeb32981b7712f01489a906 to your computer and use it in GitHub Desktop.
/**
* Native Mobile Bits Evening Coding Paper @5pm IST
* Class, Objects & Primary Constructor
*/
class Player constructor(val playerName:String) {
}
fun main(){
val player = Player(playerName = "Messi")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment