import Cocoa // -------------------------------------------------------- // // 작명 규칙 // -------------------------------------------------------- // /* - Lower Camel Case : function, method, variable, constant ex) stduentName, studentAge , .... - Upper Camel Case : type (class, struct, enum, extension, ...) ex) Student, Product - 대소문자 분. - 첫 글자를 숫자로 시작하면 안됨. */ // --------------------------------..