diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2021-02-22 07:24:37 +0000 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2021-02-22 07:24:37 +0000 |
| commit | 2c26164a5a90aa14a19078d845769d3ec9fbb5ae (patch) | |
| tree | 81e69a21263b8d9439034f1146e16f7353905779 /challenge-101/gugod | |
| parent | bc7cd7f201b47ceaf810b95bcdd9f881185152e2 (diff) | |
| download | perlweeklychallenge-club-2c26164a5a90aa14a19078d845769d3ec9fbb5ae.tar.gz perlweeklychallenge-club-2c26164a5a90aa14a19078d845769d3ec9fbb5ae.tar.bz2 perlweeklychallenge-club-2c26164a5a90aa14a19078d845769d3ec9fbb5ae.zip | |
- Added template for week 101.
Diffstat (limited to 'challenge-101/gugod')
| -rw-r--r-- | challenge-101/gugod/README | 1 | ||||
| -rw-r--r-- | challenge-101/gugod/rust/.gitignore | 2 | ||||
| -rw-r--r-- | challenge-101/gugod/rust/Makefile | 10 |
3 files changed, 13 insertions, 0 deletions
diff --git a/challenge-101/gugod/README b/challenge-101/gugod/README new file mode 100644 index 0000000000..509fd4c50c --- /dev/null +++ b/challenge-101/gugod/README @@ -0,0 +1 @@ +Solutions by Kang-min Liu. diff --git a/challenge-101/gugod/rust/.gitignore b/challenge-101/gugod/rust/.gitignore new file mode 100644 index 0000000000..ac77297bfe --- /dev/null +++ b/challenge-101/gugod/rust/.gitignore @@ -0,0 +1,2 @@ +ch-1 +ch-2 diff --git a/challenge-101/gugod/rust/Makefile b/challenge-101/gugod/rust/Makefile new file mode 100644 index 0000000000..efa7c49e4e --- /dev/null +++ b/challenge-101/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 $< |
