odyssey/tests/test_io_new.c

19 lines
219 B
C
Raw Normal View History

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