Last active
January 3, 2025 02:15
-
-
Save AppleCEO/81ff4c2b3cd8b4f33055240415a47e91 to your computer and use it in GitHub Desktop.
GetOnly
This file contains 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
struct Greeting { | |
var name: String { | |
return "도미닉님 안녕하세요" | |
} | |
} | |
var greeting = Greeting() | |
print(greeting.name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment