examples/trapping_eof.rb in highline-2.0.0.pre.develop.9 vs examples/trapping_eof.rb in highline-2.0.0.pre.develop.11
- old
+ new
@@ -1,6 +1,7 @@
#!/usr/bin/env ruby
+# encoding: utf-8
# trapping_eof.rb
#
# Created by James Edward Gray II on 2006-02-20.
# Copyright 2006 Gray Productions. All rights reserved.
@@ -11,10 +12,10 @@
loop do
begin
name = ask("What's your name?")
break if name == "exit"
puts "Hello, #{name}!"
- rescue EOFError # HighLine throws this if @input.eof?
+ rescue EOFError # HighLine throws this if @input.eof?
break
end
end
puts "Goodbye, dear friend."