bean-script 0.2.12

Simple scripting language for easy use in other projects.
Documentation
1
2
3
4
5
6
7
8
9
let(<i_value>): "intial value" // I is for internal
fn(<value>): i_value

fn(<function>): {
	print("updated value = 'second value'")
	i_value: "second value"
}

export(<value>) export(<function>)