Add parser support for output statements

This commit is contained in:
2020-05-12 05:27:51 +02:00
parent 32b18e2b63
commit e42fd92d4b
4 changed files with 71 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
input: n -> integer.
output: q/1.
axiom: forall N1, N2, N3 (N1 > N2 and N3 > 0 -> N1 * N3 > N2 * N3).
axiom: (p(0) and forall N (N >= 0 and p(N) -> p(N + 1))) -> (forall N p(N)).