Home Controls Objects Operators Index

 

 

HEX-BASIC

HEX-BASIC is the built in programming language that Heximus uses to develop and deploy applications.  HEX-BASIC is based on BASIC with some added modern constructs.

Beginners' All-purpose Symbolic Instruction Code

Hex-BASIC is a loosely type language meaning it is not required to define a variable type and name before use.  This was a design parameter of HEX-BASIC, which makes the language much easier and less tedious to use.

Example:

 j = 45

// j is now a integer, value is 45

Now if you try to set j to a string after you set it to an integer, you will get an error message and your program will halt.

j = "abc"  //  this is a error

j previously used as an integer

ss = 2,3,5,8,13

this will create an array called ss and load it with the values 2,3,5,8,13

  Think of HEX-BASIC as the wiring to easily access system resources like the Camera, Audio, GPS, Bluetooth, WIFI and Accelometer.