cdl/src/Cdl/SampleCows.hs

12 lines
305 B
Haskell
Raw Normal View History

2020-05-04 16:50:01 -07:00
module Cdl.SampleCows where
import Cdl.Cow
regularPolygonCow :: Int -> CowBehavior ()
regularPolygonCow n = repeatTimes n $ move 10 >> return (360 `div` n)
squareCow :: CowBehavior ()
squareCow = repeatTimes 4 $ move 10 >> turn 90
pacingCow :: CowBehavior ()
pacingCow = move 10 >> turn 180 >> move 10