A highly dynamic embeddable scripting language.
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.
Visit zyrouge.github.io/beize.
text := "Hello World!";
print(text);