aboutsummaryrefslogtreecommitdiff
path: root/Computer_Science/SICP/c.c
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2017-12-02 06:10:20 +0800
committerSteve Lee <me@xiangyangli.com>2017-12-02 06:10:20 +0800
commit9b939e65cf007e859dabe5de6b31d255d647e0ce (patch)
treebf9229755f4e58bb81add73c7f3c32fe4023e7ec /Computer_Science/SICP/c.c
parent5dc061ae68ac3b5b28556bdbd1574579d8da33e7 (diff)
download42-9b939e65cf007e859dabe5de6b31d255d647e0ce.tar.xz
42-9b939e65cf007e859dabe5de6b31d255d647e0ce.zip
category
Diffstat (limited to 'Computer_Science/SICP/c.c')
-rw-r--r--Computer_Science/SICP/c.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Computer_Science/SICP/c.c b/Computer_Science/SICP/c.c
new file mode 100644
index 0000000..fae921b
--- /dev/null
+++ b/Computer_Science/SICP/c.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main()
+{
+ printf("hello world\n");
+ return 0;
+
+}