Change quasiquote algorithm
[jackhill/mal.git] / impls / ada / reader.ads
CommitLineData
673ee61c
CM
1with Types;
2
3package Reader is
4
5 -- This is the Parser (returns an AST)
fbad73cb 6 function Read_Str (S : String) return Types.Mal_Handle;
311cbfc0 7
8c49f5a7
CM
8private
9
10 procedure Lex_Init (S : String);
11
ee927d07 12 function Read_Form return Types.Mal_Handle;
8c49f5a7 13
673ee61c 14end Reader;