XBLite
A reader requests expansion of this book to include more material. You can help by adding new material (learn how) or ask for assistance in the reading room. |
A Wikibookian believes this page should be split into smaller pages with a narrower subtopic. You can help by splitting this big page into smaller ones. Please make sure to follow the naming policy. Dividing books into smaller sections can provide more focus and allow each one to do one thing well, which benefits everyone. |
XBLite is an offshoot of the XBasic programming language. The XBLite compiler translates programs from source form into assembly language. From this point, conventional tools build the final executable program or DLL library. The XBLite compiler will work on all Windows platforms including Win98, NT, 2000, and XP.
XBLite is a "younger brother" of XBasic. XBasic was developed by Max Reason to be used under MS-Windows and LINUX OSs. In 2000, he made the entire language, compiler, and PDE freely available under an Open Source GPL. The XBasic language itself has not been altered so console programs in XBasic will run identically under XBLite. The XBLite compiler is also released under the same OpenSource GPL license.
Enhancements, post XBasic
[edit | edit source]XBLite has been enhanced for use under Windows. It is now possible to:
- Create true command line Win32 console programs.
- Use the windows common controls for creating GUI applications.
- Easily add resources to your executable program.
- Use inline assembly language in your program.
- Modify and extend the XBasic language.
And, all of the windows common controls and common dialogs are now available to create win32 native graphical user interfaces (GUIs).
"Hello World!" in XBLite
[edit | edit source]A common example of the language's syntax is the "Hello World" program:
A console version
[edit | edit source]IMPORT "xst" ' Standard library : required by most programs DECLARE FUNCTION Entry () FUNCTION Entry () PRINT "Hello World!" a$ = INLINE$ ("Press Enter to quit >") END FUNCTION END PROGRAM
A GUI version
[edit | edit source]IMPORT "gdi32" ' import a system library IMPORT "user32" ' import a system library DECLARE FUNCTION Entry () ' declare function Entry() FUNCTION Entry () ' begin function ' display a message box MessageBoxA (0, &"Hello World!", &"Hello World Window", $$MB_OK) END FUNCTION ' end function END PROGRAM ' end program