Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

설치 매뉴얼 #3

Open
sanxiyn opened this issue Sep 24, 2016 · 2 comments
Open

설치 매뉴얼 #3

sanxiyn opened this issue Sep 24, 2016 · 2 comments
Labels

Comments

@sanxiyn
Copy link

sanxiyn commented Sep 24, 2016

C 프로그램을 컴파일하고 실행할 수 있는 환경을 갖춥니다. Windows: Visual Studio Downloads에서 Visual Studio Community 2015를 설치합니다. Mac: Xcode를 설치합니다. Linux: Debian이나 Ubuntu의 경우 build-essential 패키지를 설치합니다.

rustup 인스톨러로 Rust를 설치합니다. (브라우저가 OS에 따라 서로 다른 설치 안내를 보여줍니다.)

Rust 설치가 잘 되었는지 확인하면서 Rust 버전도 함께 확인합니다.

$ rustc -V
rustc 1.11.0 (9b21dcd6a 2016-08-15)

기본 예제 프로젝트를 컴파일하고 실행해 봅니다.

$ cargo new --bin example
$ cd example
$ cargo run
   Compiling example v0.1.0 (file:///home/sanxiyn/sandbox/example)
     Running `target/debug/example`
Hello, world!

예제를 수정해서 다시 컴파일하고 실행해 봅니다. (아래에서는 vi를 사용했지만, 원하는 편집기를 사용하면 됩니다.) Hello를 Goodbye로 수정해 봅시다.

$ vi src/main.rs
$ cargo run
   Compiling example v0.1.0 (file:///home/sanxiyn/sandbox/example)
     Running `target/debug/example`
Goodbye, world!

여러 편집기를 위한 환경 설정은 별도로 작성해서 올리겠습니다. 진행하는데 문제가 있으시면 댓글로 달아 주세요.

@sanxiyn
Copy link
Author

sanxiyn commented Sep 24, 2016

Goodbye까지 문제 없이 진행하셨으면 이 댓글에 +1 반응을 달아 주세요.

@sanxiyn
Copy link
Author

sanxiyn commented Sep 26, 2016

@ParkHanbum @cho93211 @heureuse 설치하시는데 어려움이 있으시면 댓글로 달아 주세요.

@sanxiyn sanxiyn added the 2016 label Sep 30, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant