/Rust_projects

This is repo for rust projects.

Primary LanguageMakefileCreative Commons Zero v1.0 UniversalCC0-1.0

rust new projects

This Repo is set for learning Rust project

References

1. Hello World

Simple test code of Hello world in rust

2. Hello, Cargo!

Learning for update package into rust and build running enviromnent.

3. Programming a Gussing Game

use rand::Rng; # generate random number 
use std::cmp::Ordering; # Ordering for comparing, it's anenum and has the variants Less, Greater, and Equal
use std::io;
  1. Learn how to generate random number and compare it with gussing number.
  2. learn how to handling invalid imput.
  3. learn looping