make
Execute the program.
./jit-c
Write an code block with end of "//0".
> int ret_int(void)
> {
> return 0;
> }
> //0
When you write the main function, it will auto execute the program.
> #include <stdio.h>
>
> int main(void) {
> printf("get: %d\n", ret_int());
> return 0;
> }
> //0
----------
get: 0
----------
After finishing your program, enter "quit" to exit.
Add "debug=1" to the make command then it will print out all the system command during executing the program.
make debug=1