tangled
alpha
login
or
join now
steveklabnik.com
/
hello-world
this repo has no description
2
fork
atom
overview
issues
pulls
1
pipelines
Hello world!
Steve Klabnik
10 months ago
cec0b3da
options
unified
split
Changed files
+17
.gitignore
Cargo.lock
Cargo.toml
src
main.rs
+1
.gitignore
···
1
1
+
/target
+7
Cargo.lock
···
1
1
+
# This file is automatically @generated by Cargo.
2
2
+
# It is not intended for manual editing.
3
3
+
version = 4
4
4
+
5
5
+
[[package]]
6
6
+
name = "hello-world-tangled"
7
7
+
version = "0.1.0"
+6
Cargo.toml
···
1
1
+
[package]
2
2
+
name = "hello-world-tangled"
3
3
+
version = "0.1.0"
4
4
+
edition = "2024"
5
5
+
6
6
+
[dependencies]
+3
src/main.rs
···
1
1
+
fn main() {
2
2
+
println!("Hello, world!");
3
3
+
}