Noidlox Posted September 28, 2017 Posted September 28, 2017 (edited) Solved. Delete pls Edited September 28, 2017 by Noidlox
Noidlox Posted September 28, 2017 Author Posted September 28, 2017 14 minutes ago, Chris said: https://gist.github.com/frostburn/5123472 It needs to be a basic method lol. This is so complicated. I can't even read that.
HeyImJamie Posted September 28, 2017 Posted September 28, 2017 2 hours ago, Noidlox said: It needs to be a basic method lol. This is so complicated. I can't even read that. Complaining when someone gives the answer. Write it yourself if you want it basic you pleb 2
Runnwith Posted September 28, 2017 Posted September 28, 2017 3 hours ago, Noidlox said: It needs to be a basic method lol. This is so complicated. I can't even read that.
mr magoo Posted September 28, 2017 Posted September 28, 2017 I recommend this book, Learn you a Haskell for Great Good. Everything you need to know and it's very easy to read. http://learnyouahaskell.com/chapters
Noidlox Posted September 28, 2017 Author Posted September 28, 2017 7 hours ago, mr magoo said: I recommend this book, Learn you a Haskell for Great Good. Everything you need to know and it's very easy to read. http://learnyouahaskell.com/chapters Bookmarked and saved. TY 9 hours ago, HeyImJamie said: Complaining when someone gives the answer. Write it yourself if you want it basic you pleb I did, no thanks to you. cubeRoot x = if x > 0 then x ** 0.33333333 else ((-x) ** 0.33333333) * (-1) 9 hours ago, Runnwith said: What's that?