Files
why3/examples/logic/hello_proof.why
2018-06-15 16:45:58 +02:00

12 lines
139 B
Plaintext

theory HelloProof
goal G1: true
goal G2: (true -> false) /\ (true \/ false)
use int.Int
goal G3: forall x:int. x * x >= 0
end