Updated readme. Going through first chapter

This commit is contained in:
kdeng00
2020-08-31 21:59:22 -04:00
parent 2e01b9afc3
commit 0d53df1c65
4 changed files with 62 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
/*
* Simple hello world application
*
* Author: Kun Deng
*/
#include <stdio.h>
int main()
{
printf("hello, world\n");
return 0;
}