Welcome to the introductory tutorial of WZGUILib. In this tutorial we will be making a very simple hello world program.
First, we must create a form. The form is the container of all controls.
firstForm = form(10, 10, 100, 100, false, "Main", color.white, color.black, true, false, false, false, false, false, true, false)
Then, lets create a lable
lblText = lable(1, 1, "Hello World!", 9, color.red, firstForm)
Once you run the project you will see a window with a red lable in it that says "Hello World!"