Entries from 2011-01-22 to 1 day

初めて!!Ruby4

二日ぶりにRubyの勉強。コールバックの例文で以下の通りに入力してみました。 require 'tk' TkLabel.new{ text "hello, world!!" bg "red" pack } TkButton.new{ text "Close" command {exit} pack } Tk.mainloop 保存したファイルをコマンドラインから実行…