// Youjin이라는 이름을 붙인 사용자 정의 클래스
class Youjin{
}
// tuple type
// Compound Type중 하나인 typle type에 named type인 Int 타입을 담았다. 즉 named type과 compound Type 둘 다 포함되어있는 경우이다.
(Int, (Int, Int))
// 아래 두 타입은 정확히 같은 상태다.
(Int)
Int
// Youjin이라는 이름을 붙인 사용자 정의 클래스
class Youjin{
}
// tuple type
// Compound Type중 하나인 typle type에 named type인 Int 타입을 담았다. 즉 named type과 compound Type 둘 다 포함되어있는 경우이다.
(Int, (Int, Int))
// 아래 두 타입은 정확히 같은 상태다.
(Int)
Int