hello.rb

Path: curses/hello.rb
Last Update: Tue Mar 13 02:04:11 -0500 2007

Required files

curses  

Methods

Included Modules

Curses

Public Instance methods

[Source]

# File curses/hello.rb, line 6
def show_message(message)
  width = message.length + 6
  win = Window.new(5, width,
                   (lines - 5) / 2, (cols - width) / 2)
  win.box(?|, ?-)
  win.setpos(2, 3)
  win.addstr(message)
  win.refresh
  win.getch
  win.close
end

[Validate]

ruby-doc.org is a community service provided by James Britt and Happy Camper Studios, a Phoenix, Arizona, Ruby application development company.

Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.

For more information on the Ruby programming language, visit ruby-lang.org.

Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.