├── Makefile ├── README.md ├── c.f ├── c.l ├── c1.c ├── f.c ├── f.h ├── f1.c ├── flat.c ├── flat1.c ├── l.c ├── l1.c ├── lf.c ├── lf.f ├── lf.h ├── lf1.c └── m.l /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/README.md -------------------------------------------------------------------------------- /c.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/c.f -------------------------------------------------------------------------------- /c.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/c.l -------------------------------------------------------------------------------- /c1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/c1.c -------------------------------------------------------------------------------- /f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/f.c -------------------------------------------------------------------------------- /f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/f.h -------------------------------------------------------------------------------- /f1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/f1.c -------------------------------------------------------------------------------- /flat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/flat.c -------------------------------------------------------------------------------- /flat1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/flat1.c -------------------------------------------------------------------------------- /l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/l.c -------------------------------------------------------------------------------- /l1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/l1.c -------------------------------------------------------------------------------- /lf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/lf.c -------------------------------------------------------------------------------- /lf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/lf.f -------------------------------------------------------------------------------- /lf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/lf.h -------------------------------------------------------------------------------- /lf1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eiselekd/MinimalLisp/HEAD/lf1.c -------------------------------------------------------------------------------- /m.l: -------------------------------------------------------------------------------- 1 | '( + 1 ,1) 2 | --------------------------------------------------------------------------------