Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run Esoteric Language ZOMBIE

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
like image 278
Learner_51 Avatar asked Jul 09 '10 05:07

Learner_51


People also ask

What is the point of esoteric programming languages?

An esoteric programming language (sometimes shortened to esolang) is a programming language designed to test the boundaries of computer programming language design, as a proof of concept, as software art, as a hacking interface to another language (particularly functional programming or procedural programming languages ...

How many esoteric coding languages are there?

Meta. Since April 2005, 3,961 articles have been created by 100,288 edits, including 3,380 esoteric languages.


1 Answers

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.

like image 53
kennytm Avatar answered Sep 30 '22 03:09

kennytm