aboutsummaryrefslogtreecommitdiff
path: root/challenge-103/gugod
diff options
context:
space:
mode:
authorMohammad S Anwar <mohammad.anwar@yahoo.com>2021-03-08 06:13:35 +0000
committerMohammad S Anwar <mohammad.anwar@yahoo.com>2021-03-08 06:13:35 +0000
commitc456d2b4330ccc81ab1b9e5ef25ff706d2cedd43 (patch)
tree25184126f346f251dea21b9cb1e3cedecaf966f4 /challenge-103/gugod
parent4ca90aa3b8a785fe2e2d0b64524c42c4015f11bf (diff)
downloadperlweeklychallenge-club-c456d2b4330ccc81ab1b9e5ef25ff706d2cedd43.tar.gz
perlweeklychallenge-club-c456d2b4330ccc81ab1b9e5ef25ff706d2cedd43.tar.bz2
perlweeklychallenge-club-c456d2b4330ccc81ab1b9e5ef25ff706d2cedd43.zip
- Added template for challenge 103.
Diffstat (limited to 'challenge-103/gugod')
-rw-r--r--challenge-103/gugod/README1
-rw-r--r--challenge-103/gugod/rust/.gitignore2
-rw-r--r--challenge-103/gugod/rust/Makefile10
3 files changed, 13 insertions, 0 deletions
diff --git a/challenge-103/gugod/README b/challenge-103/gugod/README
new file mode 100644
index 0000000000..509fd4c50c
--- /dev/null
+++ b/challenge-103/gugod/README
@@ -0,0 +1 @@
+Solutions by Kang-min Liu.
diff --git a/challenge-103/gugod/rust/.gitignore b/challenge-103/gugod/rust/.gitignore
new file mode 100644
index 0000000000..ac77297bfe
--- /dev/null
+++ b/challenge-103/gugod/rust/.gitignore
@@ -0,0 +1,2 @@
+ch-1
+ch-2
diff --git a/challenge-103/gugod/rust/Makefile b/challenge-103/gugod/rust/Makefile
new file mode 100644
index 0000000000..efa7c49e4e
--- /dev/null
+++ b/challenge-103/gugod/rust/Makefile
@@ -0,0 +1,10 @@
+all: ch-1 ch-2
+
+clean:
+ rm ch-1 ch-2
+
+ch-1: ch-1.rs
+ rustc $<
+
+ch-2: ch-2.rs
+ rustc $<