Skip to content

Quick introduction to the Rust language and memory ownership principles and comparison to JavaScript and Python

Notifications You must be signed in to change notification settings

gustavo-bertoldi/Rust-Introduction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust Introduction

To install Rust: https://www.rust-lang.org/tools/install

To run code:

cargo run --bin file_name_without_extension 

To add new files, you must declare them in the Cargo.toml file under a new [[bin]] with the name property set to the name of the Rust file without the extension

[[bin]]
name = "intro"

[[bin]]
name = "pres"

To start a new Rust project: cargo init

About

Quick introduction to the Rust language and memory ownership principles and comparison to JavaScript and Python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published