1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/swift.md

29 lines
469 B
Markdown
Raw Normal View History

# swift
> Swift 프로젝트를 생성, 실행 및 빌드.
> 더 많은 정보: <https://swift.org>.
- REPL(대화형 셸) 시작:
`swift repl`
- 프로그램 실행:
`swift {{파일.swift}}`
- 패키지 관리자로 새 프로젝트 시작:
`swift package init`
- Xcode 프로젝트 파일 생성:
`swift package generate-xcodeproj`
- 의존성 업데이트:
`swift package update`
- 프로젝트를 릴리스용으로 컴파일:
`swift build -c release`