0% developed

XBLite

From Wikibooks, open books for an open world
Jump to navigation Jump to search

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:

  1. Create true command line Win32 console programs.
  2. Use the windows common controls for creating GUI applications.
  3. Easily add resources to your executable program.
  4. Use inline assembly language in your program.
  5. 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

See Also[edit | edit source]

XBasic

Links[edit | edit source]