본문 바로가기

kotlin, java, android

[Kotlin] 기본 문법 정리

1. Program entry point

kotlin의 program entry point는 main 함수다.

 

2. 표준 출력

print : 그냥 단순한 standard output이다.

println : print + \n 이다.

cf) 세미콜론(;)은 붙히지 않는다.

print("hello?")
println("hello??")

 

3. 함수에 인자(argument) 추가하기

fun sum(a: Int, b: Int): Int {
    return a + b
}

fun main(args: Array<String>) {
    val c = sum(3, 5)
    println(c)
}

색칠한 3, 5처럼 그냥 인자를 ,로 연결하여 입력하면 intellij가 알아서 

로 만들어준다!! 신기행ㅎㅎ