1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-20 18:18:51 +03:00
mal/ada/reader.ads

17 lines
280 B
Ada

with Types;
package Reader is
Max_Line_Len : constant := 2048;
-- This is the Parser (returns an AST)
function Read_Str (S : String) return Types.Mal_Handle;
private
procedure Lex_Init (S : String);
function Read_Form return Types.Mal_Handle;
end Reader;