fish/main.c

12 lines
201 B
C
Raw Normal View History

2017-05-09 14:04:24 +00:00
#include <stdio.h>
2017-05-11 15:16:06 +00:00
#include <stdlib.h>
#include "fish_lib/fish_lib.h"
2017-05-09 14:04:24 +00:00
int main() {
2017-05-11 15:16:06 +00:00
/* todo load config file */
split("I love eating bananas", " ");
fishLoop();
return EXIT_SUCCESS;
2017-05-09 14:04:24 +00:00
}