SIGN IN SIGN UP

This is the Rust course used by the Android team at Google. It provides you the material to quickly teach Rust.

Quick setup

Get started by creating a new file or uploading an existing file. We recommend every repository include a README, LICENSE, and .gitignore.

https://gitmorph.com/google/comprehensive-rust.git

CREATE A NEW REPOSITORY ON THE COMMAND LINE

touch README.md
git init
git checkout -b main
git add README.md
git commit -m "first commit"
git remote add origin https://gitmorph.com/google/comprehensive-rust.git
git push -u origin main

PUSH AN EXISTING REPOSITORY

git remote add origin https://gitmorph.com/google/comprehensive-rust.git
git push -u origin main