mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-28 09:23:04 +03:00
13 lines
163 B
Plaintext
13 lines
163 B
Plaintext
x : {a}() => a -> [16]
|
|
x v = zero v
|
|
|
|
property xprop v = x v == 0
|
|
|
|
y : [12] -> [4] -> [17]
|
|
y a b = zero a b
|
|
|
|
property yprop v w = y v w == 0
|
|
|
|
t1 = x 13
|
|
t2 = y 2 3
|