fznslurp.pl 227 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 % == No, Emacs this is -*-Prolog-*- code, not what you thought... ============= load_ast(AST) :- load_ast(_>[], [], AST). load_ast(end_of_file, AST, AST). load_ast(IN > INT, IN, OUT) :- read(OP), load_ast(OP, INT, OUT).