Thursday, April 15, 2010

IronRuby 1.0 is FINALLY released!

A few days ago, IronRuby 1.0 has been released. I download and install IronRuby for .Net 2.0 because My windows environment does not have .NET 4.0.

And I run sample WinForms application from IronRuby console:
IronRuby 1.0.0.0 on .NET 2.0.50727.4927
Copyright (c) Microsoft Corporation. All rights reserved.

>>> require 'System.Windows.Forms'
=> true
>>> include System::Windows::Forms
=> Object
>>> f = Form.new
=> System.Windows.Forms.Form, Text:
>>> f.text = 'Hello World'
=> "Hello World"
>>> Application.run(f)

No comments:

Post a Comment