Skip to content

Instantly share code, notes, and snippets.

@erdalkaymak
Created December 26, 2023 06:45
Show Gist options
  • Select an option

  • Save erdalkaymak/5f86612a6f2a443521d7e2ac01a08756 to your computer and use it in GitHub Desktop.

Select an option

Save erdalkaymak/5f86612a6f2a443521d7e2ac01a08756 to your computer and use it in GitHub Desktop.
class Greeting {
private val platform: Platform = getPlatform()
fun greet(): String {
return "Hello, ${platform.name}!"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment