odyssey/tests/test_new.c

17 lines
174 B
C
Raw Normal View History

2016-11-24 13:13:49 +00:00
/*
* machinarium.
*
* Cooperative multitasking engine.
*/
#include <machinarium.h>
int
main(int argc, char *argv[])
{
mm_t env = mm_new();
mm_free(env);
return 0;
}