Underscores as thousands separators
When using large Int
numbers, we can use underscores as thousands separators to make it easier to read.
1
2
let love = 3_000
var population = 9_000_000
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.
When using large Int
numbers, we can use underscores as thousands separators to make it easier to read.
1
2
let love = 3_000
var population = 9_000_000