;;;; -*- Hen -*- ((egg "miniML.egg") ; This should never change ; List here all the files that should be bundled as part of your egg. (files "miniML.meta" "miniML.setup" "miniML.grm" "miniML.l" "miniMLsyntax.scm" "miniMLvalue.scm" "miniMLeval.scm" "miniML.scm" "miniMLparse.scm" "examples" ) ; Your egg's license: (license "GPL-3") ; Pick one from the list of categories (see below) for your egg and ; enter it here. (category code-generation) ; A list of eggs miniML depends on. (needs static-modules datatype silex lalr) (author "Ivan Raikov") (synopsis "Interpreter for a simple ML-like language."))