@steveklabnik.com / hello-world
this repo has no descriptionHello world!
Steve Klabnik 17 hours ago 4 files (+17, -0)
ADDED
.gitignore
ADDED
.gitignore
@@ -0,0 +1,1 @@+/target
ADDED
Cargo.lock
ADDED
Cargo.lock
@@ -0,0 +1,7 @@+# This file is automatically @generated by Cargo.+# It is not intended for manual editing.+version = 4++[[package]]+name = "hello-world-tangled"+version = "0.1.0"
ADDED
Cargo.toml
ADDED
Cargo.toml
@@ -0,0 +1,6 @@+[package]+name = "hello-world-tangled"+version = "0.1.0"+edition = "2024"++[dependencies]
ADDED
src/main.rs
ADDED
src/main.rs
@@ -0,0 +1,3 @@+fn main() {+ println!("Hello, world!");+}