From: fabsy Date: 2006-08-16T06:05:10+09:00 Subject: Re: goto function? > begin > ... > end while your_condition_here > > begin > ... > end until your_condition_here > > If you need an endless loop > > loop do > ... > end > > See also > http://ruby-doc.org/docs/ProgrammingRuby/html/tut_expressions.html#S6 > > Note that your script opens the file over and over again and never > closes it. This can cause problems - especially since you do it with > different modes. > > Kind regards > > robert I don't really understand.. I want the script to start over again.. for example.. When the user made an input and pressed return I want the script to "restart" or jump to the beginning..