Skip to content

daido1976/learn-rust

Repository files navigation

learn-rust

Start new project

$ cargo new <project_name>
$ cd <project_name>

Check & Test

# Check for compilability on all projects
$ make check
# Test on all projects.
$ make test