module Instruction (Instruction (..)) where
import Graphics.Gloss.Data.Color
— Instructions: steps to be performed by the renderer.
Copyright By PowCoder代写 加微信 powcoder
— Unlike expressions, these do not contain any computations (e.g., addition, function calls).
data Instruction =
| IRotate Int
| IPenDown
| IChangeColor Color
deriving (Eq, Show)
程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com