Explorar el Código

add true and false demonstrating exit status

master
Ian Piumarta hace 3 meses
padre
commit
e2bb1d7df9
Se han modificado 2 ficheros con 12 adiciones y 0 borrados
  1. +6
    -0
      false.txt
  2. +6
    -0
      true.txt

+ 6
- 0
false.txt Ver fichero

@ -0,0 +1,6 @@
#!./main
int main(int argc, char **argv)
{
return 1;
}

+ 6
- 0
true.txt Ver fichero

@ -0,0 +1,6 @@
#!./main
int main(int argc, char **argv)
{
return 0;
}

Cargando…
Cancelar
Guardar