Samiksha Jaiswal (Editor)

ThinBasic

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Developer
  
Eros Olmi

License
  
Freeware / Proprietary

OS
  
Windows

Website
  
www.thinbasic.com

Stable release
  
v1.9.15.0 / January 11, 2015; 2 years ago (2015-01-11)

Preview release
  
v1.9.16.17 / August 14, 2016; 7 months ago (2016-08-14)

thinBasic is a BASIC-like computer programming language interpreter with a central core engine architecture surrounded by many specialized modules. Although originally designed mainly for computer automation, thanks to its modular structure it can be used for wide range of tasks.

Contents

Syntax

As the name suggests, the biggest influence on the syntax of this language was the BASIC language. But, unlike traditional BASICs, as known from the 8-bit era, thinBASIC does differ in few important points.

For example, it requires the programmer to declare variables and it does not feature the infamous GOTO and GOSUB statements. Some aspects of the syntax are even inspired in non-BASIC languages, such as C/C++. Thanks to this, thinBASIC optionally allows use of implicit line continuation, simplified addition, subtraction, multiplication and division operators, shortened variable declaration and initialization:

Another source of inspiration are the modern versions of BASIC, such as Visual Basic or PowerBASIC.

ThinBASIC does offer the main flow control statements, such as SELECT CASE, IF ... THEN/ELSEIF/ELSE/END IF, loops (infinite, conditional, FOR, WHILE/WEND, DO/LOOP WHILE ..., DO/LOOP UNTIL ...) and it also puts very strong effort on providing wide range of built-in functions for number crunching and especially string handling.

Variables and data types

ThinBASIC supports a wide range of numeric and string data types.

Besides those mentioned in the table above, a programmer can define pointers, user-defined types and unions.

The special features related to user-defined types in thinBASIC are:

  • the possibility to inherit members from one or more other user-defined types
  • static members (members whose value is shared among all variables of given UDT)
  • dynamic strings
  • Variables can be defined in global, local or static scope. ThinBASIC supports arrays of up to three dimensions.

    Modules

    The elemental functionality of the language is provided by the so-called Core module, which is loaded by default, and takes care of parsing too.

    Besides the Core module, thinBASIC offers other modules, each covering a specific area of functionality, for example:

  • GUI creation
  • console handling
  • file handling
  • 3D graphics
  • networking
  • ...
  • Each module is represented by single DLL, with specific structure. This allows the module to contain not just typical functions and procedures, but also for example constants and user-defined types definitions, immediately available for script without need for header file. The only thing needed is to explicitly mention the usage of module in the code – for file handling it would look like:

    Functions and procedures

    To better structure the code, thinBASIC provides the functions and procedures functionality. There is one function with special treatment, called TBMAIN, which is guaranteed to be executed first. It represents the same function as main() function in C programming language, but its use is optional.

    A programmer can define custom functions and procedures (called Subs); they can have up to 32 parameters. Both functions and procedures do not need to be declared before use. Parameters can be marked as optional, and they can also be initialized to default values. Each parameter can be specified to be passed by value (default) or by reference.

    The functions can be called directly, as in the listing above, or by composing their name at run-time.

    Binding to third-party APIs

    ThinBASIC supports calling functions from third-party DLLs; programmer needs to declare them first to be able to access the functionality.

    Thanks to this mechanism, thinBASIC allows using technologies such as OpenGL, OpenCL, XML, ODE and many others.

    Code organization

    ThinBASIC does not support any form of project files at the moment, but it encourages splitting code to units by providing multiple file extensions for different use:

  • .tBasic - main code
  • .tBasicI - include file, containing declaration of functions from 3rd party DLLs for example
  • .tBasicU - code unit containing auxiliary routines
  • The main code can reference these files using #include directive, which can use wildcards:

    Customization

    The language can be enhanced by module development using SDK for many languages (PowerBASIC, FreeBASIC, C, MASM).

    Documentation

    The development team puts strong focus on documentation of the language and on the learning resources. The language itself is documented in extensive help file and the default installation contains tutorial and much example code too.

    Various articles on use of thinBASIC have been published in form of ThinBasic Journal and on the homepage of the programming language as well (please see external links).

    Integrated development environment (IDE)

    ThinBASIC comes with own IDE, called thinAir, in the default installation. It offers:

  • Customizable syntax highlighting
  • Code templates
  • Multiple source files opened at once in tabs
  • Ability to view one source using multiple views
  • Optional script obfuscation
  • Creation of independent executable from the script
  • Access to the help file

  • thinAir allows using the debugger as well.
    This component is called thinDebug and can be watched on the image linked below.

  • thinDebug, thinBasic Debugger
  • Code samples

    Console program, which asks user about name and then greets him:

    Pros and cons

    ThinBASIC was designed for the Windows platform and this is why it makes a good use of resources provided by this system, such as registry, user interface, work with processes, COM, DLLs. Although interpreted, thinBASIC is considered to have usually fast execution. When the interpreter nature of the language hits the limits, it is possible to perform optimizations using partial JIT compilation. Another strength of the language is a wide range of commands covering various areas of interest and for BASIC traditionally - strong focus on string handling. The language is under continuous development and maintenance.

    The fact that thinBASIC is designed for Windows only can be seen as disadvantage as well, for those who seek cross-platform tools. The speed of execution without the use of optimizations is lower compared to output of compilers, thanks to language interpreter nature. Another possible disadvantage could be that while there started some initiative on bringing object-oriented programming features to the language, it is still in its early stage, so programmers can use only the predefined classes, but they are not allowed to create his own at the moment.

    Compatibility

    thinBASIC has been developed under Microsoft Windows XP Professional using PowerBASIC, and requires Internet Explorer version 5.50 or above.

  • Extensively tested: Windows 2000 and Server, XP, Vista, Windows 7, Server 2003, Windows 8
  • Partly supported: Windows 98 SE, Me
  • Unsupported: Windows 95
  • References

    ThinBasic Wikipedia