1
1
mirror of https://github.com/kanaka/mal.git synced 2024-10-06 02:17:09 +03:00
mal/impls/ada/reader.ads

15 lines
240 B
Ada
Raw Normal View History

2015-03-15 22:56:09 +03:00
with Types;
package Reader is
-- This is the Parser (returns an AST)
function Read_Str (S : String) return Types.Mal_Handle;
2015-05-22 00:31:44 +03:00
private
procedure Lex_Init (S : String);
function Read_Form return Types.Mal_Handle;
2015-05-22 00:31:44 +03:00
2015-03-15 22:56:09 +03:00
end Reader;