Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.44 KB

README.md

File metadata and controls

34 lines (22 loc) · 1.44 KB

Beize

A highly dynamic embeddable scripting language.

GitHub Release GitHub Release Test Documentation

Language Specification

The language syntax is a mix of Go and JavaScript. It is also highly dynamic with necessary basic features. Beize script files have an .beize extension. The beize_compiler and beize_vm provides the compiler and the runtime for the language.

But, is it fast? The performance is reasonable for a mere scripting language. It can do 100000 iterations and function calls in around 225 milliseconds. I would say, it's pretty freaking good.

Documentation

Visit zyrouge.github.io/beize.

Example

text := "Hello World!";
print(text);

License

GPL-3.0