blob: e7ee86b25d6d6054818c46dfb0e0325d7121f13f [file] [log] [blame] [edit]
$esc:(#include <stdio.h>)
/*
* `SysState` is the 'world', everything outside the Cogent program
* that is encapsulated into this variable. Essentially the state of
* the external world.
*/
typedef void *SysState;
#include "generated.c"
int main(void)
{
$ty:(SysState) st;
st = $exp:helloworld(st);
st = $exp:fn(st);
return 0;
}