谢尔宾斯基地毯方案代码翻译
我在 http://rosettacode.org/wiki/Sierpinski_carpet#Scheme 找到了生成 Sierpinski 地毯的代码- 但它不会在 DrRacket 环境或 WeScheme 中运行。有人可以为这两种环境提供解决方案吗?
I found code for generating Sierpinski carpet at http://rosettacode.org/wiki/Sierpinski_carpet#Scheme - but it won't run in the DrRacket environment or WeScheme. Could someone provide solutions for either environments?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来这段代码在 DrRacket 中运行良好,在前面添加一行
表明该代码是在 Racket 中编写的。如果这还不够,我可以提供更多详细信息。
It looks like this code runs fine in DrRacket after prepending a
line indicating that the code is written in Racket. I can provide more detail if this is not sufficient.
我已经将程序翻译为在 WeScheme 下运行。我做了一些更改:我没有使用(显示)和(换行),而是使用 WeScheme 提供的图像基元来制作稍微更好的图片。您可以查看正在运行的程序及其源代码。为了方便起见,我还在这里附上了来源:
I've translated the program to run under WeScheme. I've made a few changes: rather than use (display) and (newline), I use the image primitives that WeScheme provides to make a slightly nicer picture. You can view the running program and its source code. For convenience, I also include the source here:
这是 WeScheme 的修改后的代码。 WeScheme 不支持 do-loop 语法,因此我使用 srfi-1 中的 Expand 代替
Here is the modified code for WeScheme. WeScheme don't support do-loop syntax, so I use unfold from srfi-1 instead