zuzu-rust 0.6.0

Rust implementation of ZuzuScript
Documentation
1
2
3
4
5
6
7
8
9
10
let counter := 1;

function bump () {
	counter += 1;
	return counter;
}

function read () {
	return counter;
}