How to manage the esoteric ZOMBIE language

Can anyone tell me how I can compile and run a program written in ZOMBIE? For example, if I wrote the following source to print "hello world" on the screen, how can I extract the .exe file from it. Thank you

HelloWorld is a zombie summon task SayHello say "Hello World!" animate animate 
+7
esoteric-languages
source share
2 answers

It seems that there is no compiler for this language. Only an interpreter written in Python exists.

However, since it is written in Python, you can change Environment.__init__ to read the file by directly embedding the source code, then create an exe from this .

+8
source share

Since you are probably using Interpreter to run the program, this language compiles. echo file is unlikely to be executed

-one
source share

All Articles