Initial commit

This commit is contained in:
Arkaprabha Chakraborty
2022-01-05 22:58:39 +05:30
commit b19ea4b759
7 changed files with 315 additions and 0 deletions

15
Makefile Executable file
View File

@@ -0,0 +1,15 @@
deb:
@sudo apt install gcc python3
arch:
@sudo pacman -S gcc python3
c: doughnut.c
@gcc -o doughnut.out doughnut.c -lm
@./doughnut.out
py: doughnut.py
@python3 doughnut.py
clean: doughnut.out
@rm doughnut.out