From 23270cdd582feb45070e4780c8cfd19619034596 Mon Sep 17 00:00:00 2001 From: Algo-code Date: Wed, 17 Apr 2019 03:02:02 +0800 Subject: [PATCH 1/2] added the buys feature --- buys.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 buys.py diff --git a/buys.py b/buys.py new file mode 100644 index 0000000..4caec9d --- /dev/null +++ b/buys.py @@ -0,0 +1 @@ +print("contains code for buying feature") From e4ea47dd7606e608392edddf7fe40b456bd72014 Mon Sep 17 00:00:00 2001 From: Algo-code <40302957+Algo-code@users.noreply.github.com> Date: Wed, 17 Apr 2019 18:17:15 +0800 Subject: [PATCH 2/2] Create hello.c --- hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..3712964 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include + +int main (){ + printf("hello, world"); + return 0; +}