如何运行深奥语言 ZOMBIE
谁能告诉我如何编译和运行在 ZOMBIE 上编写的程序?例如,如果我编写了以下源代码以在屏幕上打印“hello world”,我怎样才能用它制作一个 .exe 文件。谢谢!
HelloWorld is a zombie
summon
task SayHello
say "Hello World!"
animate
animate
Can anyone please tell me how can I compile and run a program written on ZOMBIE? For example, if I wrote the following source cord to print out “hello world” on to the screen, how can I make an .exe file out of it. Thanks!
HelloWorld is a zombie
summon
task SayHello
say "Hello World!"
animate
animate
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
似乎没有这种语言的编译器。只有用 Python 编写的解释器存在。
但是,由于它是用 Python 编写的,因此您可以将
Environment.__init__
从读取文件更改为直接嵌入源代码,然后 从中生成 exe。There doesn't seem to be a compiler for this language. Only an interpreter written in Python exists.
However, since it is written in Python, you could change
Environment.__init__
from reading a file to directly embedding your source code, then generate an exe out of it.由于您可能使用解释器来运行程序
这种语言,然后编译。 echo 文件不太可能完成
Since you probably use Interpreter to run the program
this language, then compiled. echo file is not likely to be done