From: Mohammad Khan Date: 2007-10-02T06:39:29+09:00 Subject: void value expression for 'retry' ------=_Part_13538_5168457.1191274762177 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline following code returns, retry.rb:13: void value expression What is wrong with this code? #!/usr/bin/env ruby retry_count = 0 retry_max = 4 begin sleep 30 rescue Interrupt if ( retry_count < retry_max) retry_count++ retry end rescue raise end Thanks, Mohammad ------=_Part_13538_5168457.1191274762177--