hello.rb

Path: curses/hello.rb
Last Update: Mon Aug 13 09:42:44 GMT+10:00 2001

Required files

curses  

Methods

Included Modules

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]