12 lines
223 B
C
12 lines
223 B
C
#include <stdio.h>
|
|
#define GEBS_IMPLEMENTATION
|
|
#include "../gebs.h"
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
gebs_rebuild_self(argc, argv, "cc", "-o", "self_rebuild", __FILE__);
|
|
|
|
printf("Hello world\n");
|
|
return 0;
|
|
}
|