# Ruby Games Programming
Gosu is a 2D game development library for the Ruby and C++ programming languages, available for Mac OS X, Windows and Linux.
- require 'rubygems'
- require 'gosu'
- class MyWindow < Gosu::Window
- def initialize
- super(640, 480, false, 20)
- self.caption = 'Hello World!'
- end
- end
- w = MyWindow.new
- w.show
I can’t wait to find the patience to do something cool with this.