Hacker News new | ask | show | jobs
by jamiequint 6708 days ago
or ruby

  (0..500).each {|i| print "I will not throw paper airplanes in class\n"}
1 comments

500.times {print "I will not throw paper airplanes in class \n"}
500.times {puts "I will not throw paper airplanes in class"}
I figured there was something in ruby for that :P