]> git.seodisparate.com - EN605.607.81.SP22_ASDM_Project/commitdiff
Add front_end skeleton project
authorStephen Seo <seo.disparate@gmail.com>
Mon, 28 Feb 2022 04:49:40 +0000 (13:49 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Mon, 28 Feb 2022 04:49:40 +0000 (13:49 +0900)
front_end/.gitignore [new file with mode: 0644]
front_end/Cargo.toml [new file with mode: 0644]
front_end/src/main.rs [new file with mode: 0644]

diff --git a/front_end/.gitignore b/front_end/.gitignore
new file mode 100644 (file)
index 0000000..ea8c4bf
--- /dev/null
@@ -0,0 +1 @@
+/target
diff --git a/front_end/Cargo.toml b/front_end/Cargo.toml
new file mode 100644 (file)
index 0000000..ab8b5fa
--- /dev/null
@@ -0,0 +1,8 @@
+[package]
+name = "four_line_dropper_frontend"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/front_end/src/main.rs b/front_end/src/main.rs
new file mode 100644 (file)
index 0000000..e7a11a9
--- /dev/null
@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}