this repo has no description

Hello world!

Steve Klabnik cec0b3da

+1
.gitignore
··· 1 + /target
+7
Cargo.lock
··· 1 + # This file is automatically @generated by Cargo. 2 + # It is not intended for manual editing. 3 + version = 4 4 + 5 + [[package]] 6 + name = "hello-world-tangled" 7 + version = "0.1.0"
+6
Cargo.toml
··· 1 + [package] 2 + name = "hello-world-tangled" 3 + version = "0.1.0" 4 + edition = "2024" 5 + 6 + [dependencies]
+3
src/main.rs
··· 1 + fn main() { 2 + println!("Hello, world!"); 3 + }