/rust-sample-codes

My practice codes with rust-lang

Primary LanguageRustMIT LicenseMIT

rust-sample-codes

This repository consists of some sample codes written in Rust (mostly for practice pupose).

How to use

Install Rust from here, if you don't have rust installed already.

Building and running a rust program is easy. Just type rustc file_name.rs. It will create the binary executable. And then run it like any other executables (based on your OS). You can learn more about it from here

Link: Official documentation of Rust