commit c523cc28ba1cd0b486980a778947759d62d6c4ef parent 9f8f459526bffff47fd421f9d17040262ddd2c7d Author: Klewer <64109770+klewer-martin@users.noreply.github.com> Date: Sat, 24 Oct 2020 17:02:37 -0300 Add files via upload Diffstat:
A | helloworld | | | 0 | |
A | helloworld.c | | | 8 | ++++++++ |
2 files changed, 8 insertions(+), 0 deletions(-) diff --git a/helloworld b/helloworld Binary files differ. diff --git a/helloworld.c b/helloworld.c @@ -0,0 +1,8 @@ +#include <stdio.h> + +int main(void) { + + printf("Hello world!\n"); + + return 0; +}