Skip to content

Instantly share code, notes, and snippets.

@AppleCEO
Created May 27, 2019 09:02
Show Gist options
  • Select an option

  • Save AppleCEO/5c13232de1ea71a64cde8679b24b3b17 to your computer and use it in GitHub Desktop.

Select an option

Save AppleCEO/5c13232de1ea71a64cde8679b24b3b17 to your computer and use it in GitHub Desktop.
지정 이니셜라이저 예제
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