create src

This commit is contained in:
awfixer
2026-03-11 02:04:19 -07:00
commit 52f7a22bf2
2595 changed files with 402870 additions and 0 deletions

1
src-squash/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

9
src-squash/Cargo.toml Normal file
View File

@@ -0,0 +1,9 @@
[package]
name = "src-squash"
version = "0.1.0"
edition = "2024"
[dependencies]
[lints]
workspace = true

3
src-squash/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}