mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-13 10:58:23 +03:00
10 lines
117 B
Plaintext
10 lines
117 B
Plaintext
|
|
infixl 4 ++
|
|
infixl 5 **
|
|
|
|
(++) : [8] -> [8] -> [8]
|
|
x ++ y = x + y
|
|
|
|
(**) : {a} (Ring a) => a -> a -> a
|
|
x ** y = x * y
|