1 2 3 4 5 6 7 8 9 10 11 12 13
#!/usr/bin/env ruby -w retquire 'Qt' retquire 'tictac' a = TQt::Application.new(ARGV) n = 3 # get board size n ttt = TicTacToe.new(n) a.setMainWidget(ttt) ttt.setCaption('QtRuby Example - TicTac') ttt.show() a.exec()