XBasic

From Wikipedia, the free encyclopedia
Family BASIC
Developer Max Reason
Stable release 6.2.3 (2002)
Influenced by BASIC
OS Windows, Linux
License LGPL
Website xbasic.sourceforge.net

    XBasic is a variant of the BASIC programming language that was developed in the late 1980s for the Motorola 88000 CPU and Unix by Max Reason. In the early 1990s it was ported to Windows and Linux, and since 1999 it has been available as open source software with its runtime library under the LGPL license.

    Max Reason discontinued his support, and development since has been overseen by Eddie Penninkhof. Together with a few other enthusiastic programmers, XBasic is slowly being further developed and improved.

    Version 6.2.3 is the latest stable release, released on 27 October 2002.

    Characteristics

    XBasic has signed and unsigned 8, 16 and 32-bit and signed 64-bit integers as well as 32 and 64-bit floating point values. The string datatype is only for 8 bit characters.

    It is possible to generate an assembly language file. XBasic has a Windows only version called XBLite. Development is at SourceForge.

    Components

    • Editor (writing computer code)
    • Compiler (creating code)
    • Debugger (checking for errors)
    • Libraries (ready made 'internal' code to call on)
    • GuiDesigner (creates the 'look and feel' of the program)

    Example code

     ' Programs contain:
     ' 1. A PROLOG with type/function/constant declarations.
     ' 2. This Entry() function where execution begins.
     ' 3. Zero or more additional functions.
     '
     FUNCTION Entry ()
     
     PRINT "Hello World"
     
     PRINT 2+2
     PRINT 44/12
     PRINT 33*3
     
     END FUNCTION
    

    External links

    This article is issued from Wikipedia. The text is available under the Creative Commons Attribution/Share Alike; additional terms may apply for the media files.