You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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!
여러 편집기를 위한 환경 설정은 별도로 작성해서 올리겠습니다. 진행하는데 문제가 있으시면 댓글로 달아 주세요.
The text was updated successfully, but these errors were encountered:
C 프로그램을 컴파일하고 실행할 수 있는 환경을 갖춥니다. Windows: Visual Studio Downloads에서 Visual Studio Community 2015를 설치합니다. Mac: Xcode를 설치합니다. Linux: Debian이나 Ubuntu의 경우 build-essential 패키지를 설치합니다.
rustup 인스톨러로 Rust를 설치합니다. (브라우저가 OS에 따라 서로 다른 설치 안내를 보여줍니다.)
Rust 설치가 잘 되었는지 확인하면서 Rust 버전도 함께 확인합니다.
기본 예제 프로젝트를 컴파일하고 실행해 봅니다.
예제를 수정해서 다시 컴파일하고 실행해 봅니다. (아래에서는 vi를 사용했지만, 원하는 편집기를 사용하면 됩니다.) Hello를 Goodbye로 수정해 봅시다.
여러 편집기를 위한 환경 설정은 별도로 작성해서 올리겠습니다. 진행하는데 문제가 있으시면 댓글로 달아 주세요.
The text was updated successfully, but these errors were encountered: