A Lisp implemented in AWK
# SPDX-License-Identifier: BSD-2-Clause

BEGIN {   
    _load(_string("lib.glotawk"))
    # make definition searches happen in the order the definitions are
    # written above
    _GLOBALS = _nreverse(_GLOBALS)
    _MAIN = "repl"
    main_expression = _cons(_symbol(_MAIN), _nil())
    _eval(main_expression)
}