Sha256: 537c27a4b72ef76bc5149fb0c20f552265cdbaacc1c38082aefd99f6eb490cb6
Contents?: true
Size: 342 Bytes
Versions: 271
Compression:
Stored size: 342 Bytes
Contents
module Robot (Robot, mkRobot, resetName, robotName) where data Robot = Dummy mkRobot :: IO Robot mkRobot = error "You need to implement this function." resetName :: Robot -> IO () resetName robot = error "You need to implement this function." robotName :: Robot -> IO String robotName robot = error "You need to implement this function."
Version data entries
271 entries across 271 versions & 1 rubygems