On 2/29/08, Matthew D Moss <matthew.moss / gmail.com> wrote: > Your task this week is to print "Hello, world!" to standard output > using Ruby in atypical fashion. A few basic ones that I haven't seen anyone submit yet. #unicode puts [72, 101, 108, 108, 111, 44, 32, 87, 111, 114, 108, 100, 33].pack('U*') #longs. puts [1214606444, 1865162839, 1869769828, 555753482].pack('N*') #deltas. c=0 puts [72, 29, 7, 0, 3, -67, -12, 55, 24, 3, -6, -8, -67].map{|i| (c+=i).chr}*'' -Adam