odyssey/tests/test_new.c

17 lines
200 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[])
{
machine_t machine = machine_create();
machine_free(machine);
2016-11-24 13:13:49 +00:00
return 0;
}