mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-15 10:46:37 +03:00
4 lines
92 B
Plaintext
4 lines
92 B
Plaintext
|
let foo (x:[8]) = xs where xs = [x, xs@0]
|
||
|
:prove foo 3 == [3,3]
|
||
|
:prove \x -> foo x == [x,x]
|