Created
December 26, 2023 06:45
-
-
Save erdalkaymak/5f86612a6f2a443521d7e2ac01a08756 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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