this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: add initial hello world

+18 -4
-4
.gitignore
··· 2 2 # will have compiled files and executables 3 3 /target/ 4 4 5 - # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries 6 - # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html 7 - Cargo.lock 8 - 9 5 # These are backup files generated by rustfmt 10 6 **/*.rs.bk
+7
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 3 4 + 5 + [[package]] 6 + name = "cmprss" 7 + version = "0.1.0"
+8
Cargo.toml
··· 1 + [package] 2 + name = "cmprss" 3 + version = "0.1.0" 4 + edition = "2021" 5 + 6 + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 + 8 + [dependencies]
+3
src/main.rs
··· 1 + fn main() { 2 + println!("Hello, world!"); 3 + }