Browse Source

add_helloWorld

master
wangxinyu 6 days ago
commit
61bce8c6bc
2 changed files with 9 additions and 0 deletions
  1. +2
    -0
      .gitignore
  2. +7
    -0
      hello.c

+ 2
- 0
.gitignore View File

@@ -0,0 +1,2 @@
.vscode/
build/

+ 7
- 0
hello.c View File

@@ -0,0 +1,7 @@
#include <stdio.h>

void main()
{
printf("hello world");
return 0;
}

Loading…
Cancel
Save