Add some sample cows.

This commit is contained in:
Danila Fedorin 2020-05-04 16:50:01 -07:00
parent 321df82944
commit 52001a23e5
1 changed files with 11 additions and 0 deletions

11
src/Cdl/SampleCows.hs Normal file
View File

@ -0,0 +1,11 @@
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