2016-11-24 13:13:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* machinarium.
|
|
|
|
*
|
|
|
|
* Cooperative multitasking engine.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <machinarium.h>
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2017-03-21 13:33:30 +00:00
|
|
|
machine_t machine = machine_create();
|
|
|
|
machine_free(machine);
|
2016-11-24 13:13:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|