commit b23edf9838bdc60323ba153c0623410090ecfc12
parent 932470f1d2fbea3e6a8791a0f1e5368c8ac416d6
Author: MTRNord <mtrnord1@gmail.com>
Date: Tue, 2 Mar 2021 20:43:36 +0100
initial commit
Diffstat:
3 files changed, 17 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -8,3 +8,8 @@ Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk
+
+
+# Added by cargo
+
+/target
diff --git a/Cargo.toml b/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "rengine"
+version = "0.1.0"
+authors = ["MTRNord <mtrnord1@gmail.com>"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/src/main.rs b/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}