Higher-level programming library for C with OOP features
Higher-level programming in C
cello$ gcc -o program program.c -lcello$ echo '#include <cello.h>
int main() { var x = new(List, Int, 1, 2, 3); }' > test.c && gcc -o test test.c -lcello$ gcc -Wall -o myapp main.c -lcello -lm