Przeglądaj źródła

Initial commit.

Lee Morgan 2 miesięcy temu
commit
8551698688
3 zmienionych plików z 12 dodań i 0 usunięć
  1. 3 0
      .gitignore
  2. 6 0
      Cargo.toml
  3. 3 0
      src/main.rs

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+/target
+*.swp
+*.swo

+ 6 - 0
Cargo.toml

@@ -0,0 +1,6 @@
+[package]
+name = "home-hive"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]

+ 3 - 0
src/main.rs

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