diff --git a/hello.py b/hello.py index 72647ca..1898714 100755 --- a/hello.py +++ b/hello.py @@ -1,6 +1,9 @@ #!/usr/bin/env python3 +import os + def helloworld(): + os.system("./hello_world") pass def add_numbers(x, y): @@ -8,4 +11,5 @@ def add_numbers(x, y): if __name__ == '__main__': # do something! + helloworld() pass diff --git a/hello_world.c b/hello_world.c new file mode 100644 index 0000000..62743f9 --- /dev/null +++ b/hello_world.c @@ -0,0 +1,12 @@ +#define TOEHITHPRIH { +#define ETOEHITHPRIH } +#define THIS_MAY_OR_MAY_NOT_BE_A_THIS_IS_MY_FAVORITE_THING_BROTHER ( +#define THIS_IS_MY_FAVORITE_THING_BROTHER ) +#define WOW int +#define BAM char** +#define MAN_WOW_OH , +#define OOF printf +#define A_THING_THAT_DOES_THINGS ; +#define OTEHITHORCI return +#include +WOW main THIS_MAY_OR_MAY_NOT_BE_A_THIS_IS_MY_FAVORITE_THING_BROTHER WOW argc MAN_WOW_OH BAM argv THIS_IS_MY_FAVORITE_THING_BROTHER TOEHITHPRIH OOF THIS_MAY_OR_MAY_NOT_BE_A_THIS_IS_MY_FAVORITE_THING_BROTHER " HELLO WORLD! " THIS_IS_MY_FAVORITE_THING_BROTHER A_THING_THAT_DOES_THINGS OTEHITHORCI 0 A_THING_THAT_DOES_THINGS ETOEHITHPRIH diff --git a/makefile b/makefile new file mode 100644 index 0000000..1be05d2 --- /dev/null +++ b/makefile @@ -0,0 +1,2 @@ +hello_world: hello_world.c + gcc -o $@ $<