Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
curry
curry-frontend
8163f87127e31a9403829faeb09d0bea40e4a263
8163f87127e31a9403829faeb09d0bea40e4a263
Switch branch/tag
curry-frontend
test
Bool.curry
Find file
Normal view
History
Permalink
Bool.curry
100 Bytes
Newer
Older
Added test cases for export check
Björn Peemöller
committed
Jan 28, 2016
1
2
3
4
5
6
7
module Bool where
data Bool = False | True
not :: Bool -> Bool
not False = True
not True = False