Created
May 27, 2019 09:02
-
-
Save AppleCEO/5c13232de1ea71a64cde8679b24b3b17 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 Radio { | |
| var channel: Double | |
| init(channel: Double) { | |
| self.channel = channel | |
| } | |
| } | |
| let radio = Radio(channel: 89.1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment