1) 이름짓기 규칙 Lower Camel Case : function, method, variable, constantex) someVariableName Upper Camel Case : type(class, struct, enum, extension..._ex) Person, Point, Week 대소문자를 구분. 2) 콘솔로그 print = 단순 문자열 출력 dump = 인스턴스의 자세한 설명(description 프로퍼티)까지 출력 3) 문자열 보간법 String interpolation 프로그램 실행 중 문자열 내 변수 또는 상수의 실질적인 값을 표현하기 위해 사용 ₩() 출처:https://www.youtube.com/watch?v=8Xe_fr_WRgc&list=PLz8NH7YHUj_Zmlgc..