From: fabsy Date: 2006-08-16T04:30:09+09:00 Subject: goto function? Hey! I have been trying to find a goto function in ruby.. Like this: foo: bar If blabla then GOTO foo Is there any command for exiting the app? And how do I search ex a textfile for a certain word and delete it? ------ if value == "2" system('clear') print "[Opening file..]\n\n" r_file = File.open( "file", "a") #Wrote this so I wouldn't get an error like "File doesn't exist". r_file = File.open( "file", "r") print "-----\n" print r_file.read print "-----" print "\n" system ('ruby note.rb') #is there anyway to restart or goto the beginning of the script? end ----- Thanks!