How does julia parse julia syntax and make it lisp?

The Julia parser (https://github.com/JuliaLang/julia/blob/master/src/ast.c) calls a parser written in Scheme (“femtolisp”). See The role of femtolisp in Julia?

3 Likes