你如何在codeworld中调试?

时间:2014-09-23 02:10:40

标签: haskell codeworld

http://codeworld.info/中,您只能以文本和数字的类型绘制/打印/显示数据(并且您需要显示将数字转换为文本)。那么我该怎样做才能让codeworld绘制一些既不是文本也不是数字的东西?

1 个答案:

答案 0 :(得分:4)

Chris最近添加了将Haskell基本库导入CodeWorld的功能,因此您可以执行this

import Prelude hiding (show)
import HaskellPrelude (show)

showT(x) = fromString(show(x))

main = pictureOf(text(showT([1,2,3,4,5])))