I am trying to print numbers from 1 to 100 without using loops, using C#. Any clues?
using static IronRuby.Ruby; class Print1To100WithoutLoopsDemo { static void Main() => CreateEngine().Execute("(1..100).each {|i| System::Console.write_line i }"); }
Hey, why not?