rust入門篇-hello world
新建一個目錄,
mkdir project
進入目錄:
cd project
touch main.rs
fn main() {
println!("Hello, world!");
}
編譯:
$ rustc main.rs
執行:
$ ./main
Hello, world!
或者使用:cargo 命令來新建一個專案
cargo new hello_cargo
$ cd hello_cargo
$ cargo build Compiling hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) in 2.85 secs
預設會在target/build 目錄生成編譯檔案,新增--release會在target/release生成編譯檔案
然後執行編譯後的檔案:
$./target/debug/hello_cargo
Hello, world!
也可以執行:
$ cargo run Finished dev [unoptimized + debuginfo] target(s) in 0.0 secs Running `target/debug/hello_cargo` Hello, world!
最後你可以用cargo check執行你寫的程式碼:
$ cargo check Checking hello_cargo v0.1.0 (file:///projects/hello_cargo) Finished dev [unoptimized + debuginfo] target(s) in 0.32 secs
相關文章
- RabbitMQ 入門 - Hello WorldMQ
- [WebAssembly 入門] Hello, world!Web
- Threes.js入門篇之2 - Hello WorldJS
- R語言入門之Hello worldR語言
- Ruby語言入門之Hello world
- Next.js入門:Hello WorldJS
- 零基礎入門Serverless:Hello WorldServer
- 入門輸出Hello World!——C語言C語言
- gRPC-go 入門(1):Hello WorldRPCGo
- 【入門】Hello Rust!自學簡明扼要Rust
- Rust使用Tauri開發GUI程式——Hello WorldRustGUI
- [WebAssembly 入門] 第二次的 Hello, world!Web
- Django之hello world - Django入門學習教程2Django
- Laravel5.8 入門系列一 搭建環境,Hello World!Laravel
- [第七篇]——Docker Hello WorldDocker
- Hello, World
- Hello World!
- Hello World
- 5、Python入門____第一個Python專案:Hello WorldPython
- Go - Hello WorldGo
- Docker Hello WorldDocker
- 【Java】Hello worldJava
- React Hello,WorldReact
- Mockito Hello WorldMockito
- ant Hello World
- Deep "Hello world!"
- Go:Hello WorldGo
- Python 快速教程(基礎篇01):Hello WorldPython
- React入門系列 – 2 編寫第一個Hello world的React程式React
- React入門系列 - 2 編寫第一個Hello world的React程式React
- 【Structs2】Struts2入門之hello world程式的跑通Struct
- Hello Python worldPython
- react的”Hello World !“React
- WebGL 的 Hello WorldWeb
- ABAP程式Hello World
- dotnet hello world
- RabbitMQ tutorial - "Hello world!"MQ
- 輸出hello world