Skip to content

Releases: misterunix/tinybasic

IN, OUT and ATAN2

Choose a tag to compare

@misterunix misterunix released this 30 May 21:43

Added IN function.
Added OUT statement.
Added ATAN2 function.

case insensitive variables

Choose a tag to compare

@misterunix misterunix released this 29 May 15:37

Variables were case-sensitive because the interpreter stored and looked them up using the raw spelling from the source. I changed that boundary so names are normalized to uppercase on every write and read path in interpreter.go, which makes X, x, and x all resolve to the same variable.

RND fixed

Choose a tag to compare

@misterunix misterunix released this 27 May 13:02

Got rid of the float constant used for testing and changed it to rand.Float64

Keyword fix

Choose a tag to compare

@misterunix misterunix released this 19 May 13:23
6f32ddd

Implicit LET was causing FOR LOOP type keywords to fail.

stability test

Choose a tag to compare

@misterunix misterunix released this 19 Apr 20:52
6fb8785
Change module path to github.com/misterunix/tinybasic

oppps

Testing 0.0.1-alpha

Testing 0.0.1-alpha Pre-release
Pre-release

Choose a tag to compare

@misterunix misterunix released this 04 Mar 00:38

First run at making this a working module.