repo.or.cz
/
cabal.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Un-ignore .bat files
[cabal.git]
/
cabal-testsuite
/
PackageTests
/
CMain
/
10168
/
src
/
Lib.hs
blob
ba1bcce7ab93fa724a0b71696ef22e4f9003e67a
1
module
Lib
(
myMax
)
where
2
3
myMax
::
Int
->
Int
->
Int
4
myMax x1 x2
=
if
x1
>
x2
then
x1
else
x2
5
6
foreign
export ccall myMax
::
Int
->
Int
->
Int