diff options
| author | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2021-03-01 07:04:52 +0000 |
|---|---|---|
| committer | Mohammad S Anwar <mohammad.anwar@yahoo.com> | 2021-03-01 07:04:52 +0000 |
| commit | 2e7bba2423ac520245be83ea15504303968b466b (patch) | |
| tree | bbe1775a3e40c4c2cbf9e615edfcc885717fd46c /challenge-102/gugod/rust | |
| parent | 198fd9e8e5bcf93bee6d286831b6c2f63f3b99dc (diff) | |
| download | perlweeklychallenge-club-2e7bba2423ac520245be83ea15504303968b466b.tar.gz perlweeklychallenge-club-2e7bba2423ac520245be83ea15504303968b466b.tar.bz2 perlweeklychallenge-club-2e7bba2423ac520245be83ea15504303968b466b.zip | |
- Added template for week 102.
Diffstat (limited to 'challenge-102/gugod/rust')
| -rw-r--r-- | challenge-102/gugod/rust/.gitignore | 2 | ||||
| -rw-r--r-- | challenge-102/gugod/rust/Makefile | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/challenge-102/gugod/rust/.gitignore b/challenge-102/gugod/rust/.gitignore new file mode 100644 index 0000000000..ac77297bfe --- /dev/null +++ b/challenge-102/gugod/rust/.gitignore @@ -0,0 +1,2 @@ +ch-1 +ch-2 diff --git a/challenge-102/gugod/rust/Makefile b/challenge-102/gugod/rust/Makefile new file mode 100644 index 0000000000..efa7c49e4e --- /dev/null +++ b/challenge-102/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 $< |
