root/vtcross/trunk/src/main_cognitive_engine.c @ 57

Revision 33, 198 bytes (checked in by ahe, 16 years ago)

cactus: adding cognitive engine base functions

Line 
1//
2//
3//
4
5#include <stdio.h>
6#include "cognitive_engine.h"
7
8int main() {
9    ce engine = ce_create("filename");
10    ce_print(engine);
11    ce_destroy(engine);
12
13    printf("done.\n");
14    return 0;
15}
Note: See TracBrowser for help on using the browser.