Last active
August 29, 2015 13:57
-
-
Save andykitchen/9388094 to your computer and use it in GitHub Desktop.
Multi-Language Quine Generator Puzzle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This came up in discussion with a couple of people | |
| at the Melbourne Funtional Users Group | |
| Problem: | |
| Create a program that takes as input a list of languages, then outputs | |
| a multi-quine that cycles through those languages in order. | |
| e.g. | |
| sequine ruby node ruby python | ruby | node | ruby | python | ruby | node | ruby | python | |
| I already have a proof of concept solution. | |
| This problem is probably easier than you might expect. | |
| Please share this puzzle around. | |
| Kind Regards | |
| AK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You just need a parameterised quine generator for each language right?