이 영상에서는..
- 컴파일러가 타입 추론이라는 퍼즐을 풀기 위해 당신의 코드에서 어떤 단서를 찾아내는지 보여줄 것이다.
- 컴파일러가 퍼즐을 풀지 못했을때, 어떤 일이 일어나는지 알아볼 것이다.
- Xcode 12 가 어떻게 에러 추적을하여 컴파일 타임에 실수를 찾아내고 당신을 이해시키는지 알려줄 것이다.
내용
to acheive concise* syntax without compromising safety in your code.
- concise: short and clear, expressing what needs to be said without unnecessary words.
Type inference allows you to omit explicit type annotations and other verbose details in your source code whne the compiler can figure out those details form the surrounding context.
- verbose: using or container more words than are necessary
- incidental: less important than the thing something is connected with or part of:
- Try not to be distracted by incidental details.
based on the value provided in the assignment, which is a string literal.
- 주목할 키워드: assignment, the value
- “” : string literal
using a colon after x