This website works better with JavaScript
Home
Explore
Help
Sign In
CNI
/
HaskellCourse
Watch
3
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Browse Source
Create a custom flip function
DricomDragon
5 years ago
parent
0dd603878b
commit
3a4b1c9b6c
1 changed files
with
3 additions
and
0 deletions
Split View
Show Diff Stats
3
0
myflip.hs
+ 3
- 0
myflip.hs
View File
@@ -0,0 +1,3 @@
+myflip::(a -> a -> b) -> a -> a -> b
+
+myflip f a1 a2 = f a2 a1