Quine Relay
11–20 of 187 posts
Re: Quine Relay
#12Re: Quine Relay
#13Re: Quine Relay
#14Re: Quine Relay
#15Anyone care to explain how this actually works?
Re: Quine Relay
#16Why's there a Star of David in the middle?
It's actually a transmutation circle symbol from the manga/anime Fullmetal Alchemist
Ex: Wrath's tattoo is in his eye:
http://images1.wikia.nocookie.net/__cb20130406001619/fma/ima...
Re: Quine Relay
#17Anyone care to explain how this actually works?
Per the explanation linked in the discussion [1], the initial file generates code in another language. That code, when executed, generates code in yet another language. The process continues until the output is the code of the original file. [1] https://github.com/mame/quine-relay
Re: Quine Relay
#18Re: Quine Relay
#19Earlier quoted context omitted.
Per the explanation linked in the discussion [1], the initial file generates code in another language. That code, when executed, generates code in yet another language. The process continues until the output is the code of the original file. [1] https://github.com/mame/quine-relay
What is unclear to me is how the final program manages to represent the entire code (thus the entire language loop). Wouldn't doing that make the source code recursive and infinite? Or am I missing something important?
EDIT: To clarify, there's actually a wrapper script on top of it all that tells the first script to execute, storing its output in file 2, then execute file 2 with language 2, then execute file 3 with language 3, and so on.