Explorar el Código

add_helloWorld

master
wangxinyu hace 1 semana
commit
61bce8c6bc
Se han modificado 2 ficheros con 9 adiciones y 0 borrados
  1. +2
    -0
      .gitignore
  2. +7
    -0
      hello.c

+ 2
- 0
.gitignore Ver fichero

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

+ 7
- 0
hello.c Ver fichero

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

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

Cargando…
Cancelar
Guardar