8000 GitHub - vinibiavatti1/PyVrbs: Python VRB Script Compiler
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

vinibiavatti1/PyVrbs

Repository files navigation

Py VRBS Compiler

Python VRB Compiler


About

The VRBS Script Language (VRBS) is a oldschool function based programming language created with Pyhton. This language has only one format to type code: Function (Callable) formats. Check the example bellow:

VRBS Fibonacci

int(x,1)
int(y,1)
int(z,0)
label(loop)
    output_ln($x)
    calc($x,+,$y,z)
    parse_int($z,z)
    var(x,$y)
    var(y,$z)
if($x,<,100,loop)

Output

1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89...

About

Python VRB Script Compiler

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0