iris

small scheme interpreter
git clone git://git.2f30.org/iris
Log | Files | Refs | LICENSE

parser.h (177B)


      1 /* See LICENSE file for copyright and license details. */
      2 struct object *sexpression(FILE *);
      3 struct object *eval(struct object *);
      4 void print(struct object *);
      5 int init(void);