This website requires JavaScript.
Explore
Help
Sign In
GaloisInc
/
cryptol
Watch
1
Star
1
Fork
0
You've already forked cryptol
mirror of
https://github.com/GaloisInc/cryptol.git
synced
2024-12-18 05:21:57 +03:00
Code
Issues
Projects
Releases
Wiki
Activity
68f71ed3b3
cryptol
/
tests
/
issues
/
issue133.cry
4 lines
79 B
Plaintext
Raw
Normal View
History
Unescape
Escape
Add regression test for github issue #133. Renamed old "issue133" to "trac133", indicating that it uses a different numbering system.
2014-11-05 03:10:29 +03:00
gcd : [8] -> [8] -> [8]
gcd a b = if(b == 0) then a
else gcd b (a%b)
Reference in New Issue
Copy Permalink