12 lines
142 B
Lua
Executable File
12 lines
142 B
Lua
Executable File
require "CLRForm"
|
|
|
|
text = RichTextBox()
|
|
text.Multiline = true
|
|
text.Text = [[
|
|
here is
|
|
a set of lines
|
|
for you
|
|
]]
|
|
|
|
LuaForm ({text}):ShowDialog()
|