Browse Source

Initial commit

Thomas Dy 7 years ago
commit
fbbb260017
3 changed files with 10 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 6 0
      Cargo.toml
  3. 3 0
      src/main.rs

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+target

+ 6 - 0
Cargo.toml

@@ -0,0 +1,6 @@
+[package]
+name = "rustray"
+version = "0.1.0"
+authors = ["Thomas Dy <thatsmydoing@gmail.com>"]
+
+[dependencies]

+ 3 - 0
src/main.rs

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