2022/091 mac M1 PS 유저를 위한 C++ vscode 셋업 가이드 타겟 혹은 요구 사항 Mac, M1 사용 Xcode 혹은 gcc가 설치되어 있어야 함(확인 명령어: g++ -v) (가이드: https://cdecl.github.io/dev/gcc-install-mac/) C++을 사용하려는 유저 vscode 설치 $ brew install --cask visual-studio-code CPP 파일 생성 상단에 빨간색 원을 클릭하고, 원하는 파일명.cpp로 만들어주세요. 내용은 아래 코드를 복사해서 붙여 넣기 해주세요. #include using namespace std; int main(void) { // https://gist.github.com/ax3l/53db9fa8a4f4c21ecc5c4100c0d93c94 if(__cplusplus == 202002L) st.. 기타 강좌 2022.09.12 Plorence