RosettaCodeData/Task/S-expressions/Ada/s-expressions-3.ada
2023-07-01 13:44:08 -04:00

7 lines
229 B
Ada

generic -- child of a generic package must be a generic unit
package S_Expr.Parser is
function Parse(Input: String) return List_Of_Data;
-- the result of a parse process is always a list of expressions
end S_Expr.Parser;