This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pry.config.prompt = [proc { "ruby> " }, | |
proc { " | " }] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Crabs | |
( Cup, Current, Position | |
, simulate | |
, readCircle | |
) where | |
import Data.Tuple ( swap ) | |
import Data.List (elemIndex ) | |
-- Everything is an int, so create some type aliases to make the argument lists |
OlderNewer