Ruby program with the largest ratio of output length to program length
- by Horace Loeb
The program print "hi" contains 10 characters and outputs a string with length 2. Therefore its ratio of output length to program length is 2/10.
My question is what Ruby program has the largest output length to program length ratio
(For program length let's only count non-whitespace characters (i.e., it's easy to minify a program))