Helpful links for writing good lexers and parser?

im writing a custom-lang to C transpiler and would like if some helpful links for lexing and parsing in rust were provided, preferably with a non-trivial example, perhaps a mini-language and not just something too simple like an expression evaluator. im doing it for learning, so it'd be nice too if the links didn't just use something like pest.

perhaps some stuff abt type-checking too?

Have a look at Jakt Lang compiler.

1 Like

thanks! seems interesting, will check it out