Created
April 26, 2020 08:08
-
-
Save gyugyu90/255fec85399bf3d78cdf45f5a7ebb679 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
val a: Int = 1 // 선언과 동시에 할당 | |
val b = 2 // 'Int'타입이 추론됨 | |
val c: Int // 할당되지 않는다면 타입을 지정해줘야 합니다 | |
c = 3 // 선언한 다음에 할당하기 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment