How do I exit my program at any time?

  • Thread starter Helgitomas Gislason
  • Start date
H

Helgitomas Gislason

Hello. When it comes to big, complex and long programs, you don't always
want to be needing to say at every single string:

if answer == 'exit'
exit
end

Get the point? Let's say you're making a program that's kinda like this:

--------------------
puts 'Hello, my name is Jimmy Hendrix. What\'s your name?'
puts ' '

name = gets.chomp

If name == 'Charlie' or name == 'Matt'
puts 'Ahh, great to see you. You're a boy.'
if name == 'Ann' or name == 'Sandria'
puts 'I see, you're a girl.'
end
----------------------

Now, if I wanted to exit my program lets say when I'm supposed to say
the name, I would be needing to do a, if name == 'exit', exit. and the
same thing if I wanted to exit when I was deeper in a longer program.

The main point I'm trying to get to here is: "Is there any function that
I can put at the beginning or the end, that says my program to exit
whenever I say exit WITHOUT having to put the:

if name == 'exit'
exit
end

at every string I want to have the possibility yo exit from??
 
P

Phrogz

The main point I'm trying to get to here is: "Is there any function that
I can put at the beginning or the end, that says my program to exit
whenever I say exit WITHOUT having to put the:

if name == 'exit'
exit
end

at every string I want to have the possibility yo exit from??

class Object
def gets( *args )
result = super
exit if result =~ /\A\s*exit\s*\z/oi
result
end
end

However, instead of monkey-patching the object class (and shadowing)
the Kernel#gets method), I would suggest instead writing your own
method:

def gets_or_exit
result = gets
exit if result =~ /\A\s*exit\s*\z/oi
result
end

This gives you the ability to decide if there's a time when you want
to use gets without exiting, and to do additional common work (like
always #chomp the result before returning it).
 
M

Martin DeMello

Hello. When it comes to big, complex and long programs, you don't always
want to be needing to say at every single string:

if answer == 'exit'
exit
end

def get_input(prompt)
puts prompt
retval = gets.chomp
if retval == 'exit'
exit
else
return retval
end
end

a = get_input "Enter your name"
# etc.

martin
 
T

Tim Pease

The main point I'm trying to get to here is: "Is there any function that
I can put at the beginning or the end, that says my program to exit
whenever I say exit WITHOUT having to put the:

Redefine gets to do what you want ...

module Kernel
def gets( sep = $/ )
str = super
str.chomp!
exit if str == 'exit'
str
end
end

Or if you are not comfortable with redefining methods in Kernel, write
your own gets method ...

def gets_and_exit( sep = $/ )
str = gets( sep )
....
end

Blessings,
TwP
 
J

JeremyWoertink

wow, I like their ideas better. I was gonna say, put the whole program
into a huge loop. I guess I need to start thinking on an easier
level :)


~Jeremy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,065
Latest member
OrderGreenAcreCBD

Latest Threads

Top