Skip to content

Instantly share code, notes, and snippets.

@gyugyu90
Created April 26, 2020 08:08
Show Gist options
  • Save gyugyu90/255fec85399bf3d78cdf45f5a7ebb679 to your computer and use it in GitHub Desktop.
Save gyugyu90/255fec85399bf3d78cdf45f5a7ebb679 to your computer and use it in GitHub Desktop.
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