*reformatted.

This commit is contained in:
Wang Renxin 2017-08-05 16:07:49 +08:00
parent ac340afb72
commit edafb78813

View File

@ -146,22 +146,17 @@ int main() {
struct mb_interpreter_t* bas = NULL; struct mb_interpreter_t* bas = NULL;
mb_init(); mb_init();
mb_open(&bas); mb_open(&bas);
mb_load_string(bas, "print 22 / 7;", true); mb_load_string(bas, "print 22 / 7;", true);
mb_run(bas, true); mb_run(bas, true);
mb_close(&bas); mb_close(&bas);
mb_dispose(); mb_dispose();
return 0; return 0;
} }
~~~~~~~~~~ ~~~~~~~~~~
More details are issued on the [Wiki](#wiki) pages below. Some other details are issued on the [Wiki](#wiki) pages below.
## [Wiki](https://github.com/paladin-t/my_basic/wiki) ## [Wiki](https://github.com/paladin-t/my_basic/wiki)