You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/tqtruby/rubylib/examples/tqt-examples/tictac/main.rb

14 lines
220 B

#!/usr/bin/env ruby -w
require 'TQt'
require 'tictac'
a = TQt::Application.new(ARGV)
n = 3 # get board size n
ttt = TicTacToe.new(n)
a.setMainWidget(ttt)
ttt.setCaption('TQtRuby Example - TicTac')
ttt.show()
a.exec()