xbasic 0.3.2

A library that allows adding a scripting language onto your project with ease. This lets your users write their own arbitrary logic.
Documentation
1
2
3
4
5
6
7
8
x = 1
y = 1
while x < 10000
    print x
    tmp = y
    y = x
    x = tmp + x
wend