Through the Haskell
package, CodeWorld
(https://hackage.haskell.org/package/codeworld-api) , I need to draw Koch's snowflake.
You can use this package online, in case you don't want to download it: https://code.world/#
A link so you can see what I need to do: https://upload.wikimedia.org/wikipedia/commons/f/fd/Von_Koch_curve.gif
I'm not quite sure how it would be done, can you help me?
And if by the way, you know some manuals to work with this package, well much better.
I've done this:
import CodeWorld
main :: IO ()
main = drawingOf triangle
triangle :: Picture
triangle = polygon [(9,9),(0,-9),(-9,9)]