/tutorial/backtracking/tiny_prolog/tiny_prolog.e
http://github.com/tybor/Liberty · Specman e · 13 lines · 12 code · 1 blank · 0 comment · 0 complexity · a042a6335ebd77961135042228a782bd MD5 · raw file
- class TINY_PROLOG creation make feature
- make is do
- create base.make
- create parser.make(base)
- from io.get_line until io.end_of_input loop
- parser.put_line(io.last_string)
- io.get_line
- end
- end
- base: BASE
- parser: PARSER
- end