How does julia parse julia syntax and make it lisp?

Hi fellows,

I was wondering, where does julia parse the julia code and make it into pico lisp?

Thanks

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