mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 21:03:21 +00:00
12 lines
201 B
C
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;
|
|
} |