谁能告诉我如何编译和运行用ZOMBIE编写的程序?例如,如果我编写了以下源代码线以在屏幕上打印出“hello world”,那么我如何用它制作一个.exe文件。谢谢!
HelloWorld is a zombie
summon
task SayHello
say "Hello World!"
animate
animate
最佳答案
似乎没有针对该语言的编译器。仅an interpreter written in Python存在。
但是,由于它是用Python编写的,因此您可以将Environment.__init__
从读取文件更改为直接嵌入源代码,然后更改为generate an exe out of it。
关于esoteric-languages - 如何运行深奥的语言ZOMBIE,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3210165/