文件名称:helm-turtle:基于 helm 游戏引擎的海龟模块
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-26 07:10:02
Haskell
舵龟 基于 helm 游戏引擎的 Turtle 模块。 例子 import FRP.Helm import FRP.Helm.Window as Window import FRP.Helm.Turtle myprogram :: FieldAction myprogram = do setSpeed 20 penUp goto (( - 200 ), 0 ) penDown koch 500 koch :: Int -> FieldAction koch n | n <= 10 = fd 5 | otherwise = do koch (n `div` 3 ) lt 60 koch (n `div` 3 ) rt 120 koch (n `div` 3
【文件预览】:
helm-turtle-master
----Setup.hs(46B)
----src()
--------FRP()
----helm-turtle.cabal(746B)
----LICENSE(1KB)
----README.md(578B)
----.gitignore(107B)