Merge pull request #532 from dubek/vhdl-fix-defmacro
[jackhill/mal.git] / impls / ada / reader.ads
1 with Types;
2
3 package Reader is
4
5 -- This is the Parser (returns an AST)
6 function Read_Str (S : String) return Types.Mal_Handle;
7
8 private
9
10 procedure Lex_Init (S : String);
11
12 function Read_Form return Types.Mal_Handle;
13
14 end Reader;