tangled
alpha
login
or
join now
olaren.dev
/
shitsky
10
fork
atom
Mirror of https://git.olaren.dev/Olaren/shitsky
10
fork
atom
overview
issues
pulls
pipelines
Initial commit
olaren.dev
6 months ago
1f1ce3bf
+17
4 changed files
expand all
collapse all
unified
split
.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 = "shitsky"
7
7
+
version = "0.1.0"
+6
Cargo.toml
···
1
1
+
[package]
2
2
+
name = "shitsky"
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
+
}