Skip to content

Commit

Permalink
prueba agreagando holamundos otra vez
Browse files Browse the repository at this point in the history
  • Loading branch information
deybis committed Sep 15, 2024
1 parent 3eda1bf commit 7c177ad
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
15 changes: 15 additions & 0 deletions holamundo.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Para ejecutar puede escribir en la terminal:
// sh runc.sh holamundo
// O bien hacerlo manualmente con make:
// make holamundo && ./holamundo && rm -f holamundo
// Ejecutando con clang:
// clang holamundo.c && ./a.out && rm -f a.out
// Ejecutando con gcc:
// gcc holamundo.c && ./a.out && rm -f a.out

#include <stdio.h>

int main(void) {
printf("Hola mundo\n");
return 0;
}
4 changes: 4 additions & 0 deletions holamundo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Para ejecutar escriba en la terminal:
# python holamundo.py

print("Hola mundo")

0 comments on commit 7c177ad

Please sign in to comment.