Roadmap
JAJL 1.2
JAJL 1.2 will add a lot of major features, including:
- Jump If Zero
- Allows you to jump to the function defined by the pointer if the
specified memory address is set to 0.
- Arithmetic and bitwise operations
- You can compare the
ff0a
and ff1a
memory
addresses.
- The instructions are:
- add
- sub
- mul
- div
- gt
- ff0a > ff1a
- 0 if true, 1 if not
- lt
- ff0a < ff1a
- 0 if true, 1 if not
- eq
- ff0a = ff1a
- 0 if true, 1 if not
- neq
- ff0a != ff1a
- 0 if true, 1 if not
- The output gets saved to a specified memory address.
- The specified memory address must be a floating point number.
- The address will be overwritten.
- Floating point numbers
- Global and local scope definitions
- You will be able to add and remove memory addresses to a "global
list", which defines what addresses functions can share with the
global scope.
- Type casting from (int to flt and flt to int)