Since I got a quick response on the last Ruby question I asked, I have another one that's been bothering me. Is there a one line function call that quits the program and displays a message? I know in Perl its as simple as this:
die("Message goes here")
Essentially I'm just tired of typing this:
puts "Message goes here"
exit
putswrites to stdout, whereasdiewrites to stderr, so:$stderr.puts "Message goes here". – cdarke Mar 6 at 10:39