7 lines
175 B
Lua
Executable File
7 lines
175 B
Lua
Executable File
require 'luanet'
|
|
luanet.load_assembly "System.Windows.Forms"
|
|
Form = luanet.import_type "System.Windows.Forms.Form"
|
|
form = Form()
|
|
form.Text = "Hello, World!"
|
|
form:ShowDialog()
|