본문 바로가기

컴퓨터

Swift

Hello, World!

print("Hello, world!")
// Prints "Hello, world!"

상수 선언

let myConstant = 42

변수 선언 및 정의

var myVariable = 42
myVariable = 50

형지정

let explicitDouble: Double = 70

형변환

let label = "The width is "
let width = 94
let widthLabel = label + String(width)

문자열에 값 포함시키기

let apples = 3
let oranges = 5
let appleSummary = "I have \(apples) apples."
let fruitSummary = "I have \(apples + oranges) pieces of fruit."

여러줄 문자열 정의

let quotation = """
I said "I have \(apples) apples."
And then I said "I have \(apples + oranges) pieces of fruit."
"""

배열과 딕셔너리

 

'컴퓨터' 카테고리의 다른 글

CSS 박스 그림자 Box Shadow  (0) 2021.01.17
엑셀 날짜 계산  (0) 2021.01.11
iOS 앱 개발 튜토리얼  (0) 2020.12.31
윈도우10 폴더 네트워크 공유하기  (0) 2020.12.21
table border-collapse  (0) 2020.12.17