1
0
mirror of https://gitlab.com/klmp200/fish.git synced 2024-09-21 02:18:07 +00:00
fish/main.c
2017-05-11 17:16:06 +02:00

12 lines
201 B
C

#include <stdio.h>
#include <stdlib.h>
#include "fish_lib/fish_lib.h"
int main() {
/* todo load config file */
split("I love eating bananas", " ");
fishLoop();
return EXIT_SUCCESS;
}