bean-script 0.2.12

Simple scripting language for easy use in other projects.
Documentation
repeat(10): {
	let(<n>): rand
	let(<n2>): /(round(*(n, 100)), 100)
	if(lt(n, 0.5)): {
		print("The number", n2, "is less than 0.5")
	} else: {
		print("The number", n2, "is greater than 0.5")
	}
}

print(match("joe"): {
	case("joe"): "its joe"
	case("maddy"): "its maddy"
	default: "its not joe or maddy"
})

while: {
	print("looping")
	return(gt(rand, 0.5))
}