/rust

rust experimentations

Primary LanguageRustGNU General Public License v3.0GPL-3.0

RUST - SYSTEM PROGRAMMING LANGUAGE

====================================

This place is for my own Rust experimentations

Rust offer secure solution for system programming

  • Common commands rustc main.rs
    to build a main executable file

  • cargo new <project_name> --bin
    to create a new projects and its environement

  • cargo build
    to build the project to be runnable

  • cargo run
    to run / execute the project as is