esoteric-languages

How to run Esoteric Language ZOMBIE

旧时模样 提交于 2019-12-23 07:47:31
问题 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 回答1: 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

How does the Brainfuck Hello World actually work?

喜夏-厌秋 提交于 2019-12-04 07:21:04
问题 Someone sent this to me and claimed it is a hello world in Brainfuck (and I hope so...) ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>. I know the basics that it works by moving a pointer and increment and decrementing stuff... Yet I still want to know, how does it actually work? How does it print anything on the screen in the first place? How does it encode the text? I do not understand at all... 回答1: 1. Basics To understand

Is there any language that allows spaces in its variable names [closed]

本小妞迷上赌 提交于 2019-11-29 07:05:33
Is there (or was there ever) any non-trivial language that allows spaces in its variable names? I am aware of the language Whitespace , but I'm interested in a language that was actually used for something besides demonstration. I ask this out of pure curiosity. In a way, yes. Several languages's variable names are really just keys to a higher-level object. Both Coldfusion and Javascript come to mind. In Javascript, you can write foo=bar , but what you've really said is: window['foo'] = bar; You could just as easily write window['i haz a name'] = bar; The various scopes in Coldfusion can also

Is there any language that allows spaces in its variable names [closed]

一个人想着一个人 提交于 2019-11-28 00:23:01
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 8 years ago . Is there (or was there ever) any non-trivial language that allows spaces in its variable names? I am aware of the language Whitespace, but I'm interested in a language that was actually used for something besides demonstration. I ask this out of pure curiosity. 回答1: In a way, yes. Several languages's variable