"Robert Dober" <robert.dober / gmail.com> wrote in message news:335e48a90706030531q536624b6m73ecace8f29583fb / mail.gmail.com... > If I want the job ;) > > X = [ %w{FizzBuzz} + %w{Fizz} * 4 ] > Y = %w{Buzz} > (1..100).each do |n| > puts( X[n%3][n%5]) rescue puts( Y[n%5]||n ) > end Robert, you are not kind to guys who will maintain your code. Do you want the job or demonstration of your smartness? It's could be great for small startup doing R&D, but not for enterprise-like development. imho: in any situation: KISS!