repo.or.cz
/
why3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'fix_another_sessions' into 'master'
[why3.git]
/
tests
/
test_args_parsing.mlw
blob
7d32f879b0884b956126c0c189016428276bd2fe
1
module Test
2
3
(* Inspired from isqrt *)
4
use int.Int
5
6
function sqr (x:int) : int = x * x
7
8
lemma sqr_non_neg: forall x:int. sqr x >= 0
9
10
end