summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-09-28 16:43:31 +0300
committerLars Wirzenius <liw@liw.fi>2019-09-28 16:43:31 +0300
commitd84bf447f95ff6c31a62d1e87bc16d1d3b61892c (patch)
tree2e13367c1093d3cb28edebab53efef4ce02431c1
downloadrust-deb-sample-d84bf447f95ff6c31a62d1e87bc16d1d3b61892c.tar.gz
Add: initialHEADmaster
-rw-r--r--.gitignore2
-rw-r--r--Cargo.toml9
-rw-r--r--src/main.rs3
3 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..53eaa21
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+/target
+**/*.rs.bk
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..ba78815
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "hi"
+version = "0.1.0"
+authors = ["Lars Wirzenius <liw@liw.fi>"]
+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
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}