Skip to content

GustavoGJesus/Rustzinho

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Welcome to the Rustzinho πŸ¦€

Rust Learning πŸ“šβš™οΈ

Step by step to learn Rust.

All projects and studies were done following the official Rust documentation: https://doc.rust-lang.org/book/title-page.html

Create Project

Guide: https://doc.rust-lang.org/book/ch01-03-hello-cargo.html

  1. Create project with cargo
$ cargo new hello_cargo
$ cd hello_cargo
  1. Connect your repository
$ cargo new <path your directory>
  1. Building and executing a project with cargo:
$ cargo build
   Compiling hello_cargo v0.1.0 (file:///projects/hello_cargo)
    Finished dev [unoptimized + debuginfo] target(s) in 2.85 secs

$ ./target/debug/hello_cargo # or .\target\debug\hello_cargo.exe on Windows
Hello, world!
  1. Importantly, the best option is to use the command:
 $ cargo check

This command checks your code, but it doesn't generate an executable, it just checks if your code is compiling

  1. Build for release, this command is used to build your project for delivery to the user, recommend using this command only when your project is ready.
$ cargo build --release

Feel free to share your tips! Let's learn Rust together! πŸ¦€

About

My roadmap to learn rust, based on the documentation πŸ¦€

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages