xbasic 0.3.1

A library that allows adding a scripting language onto your project with ease. This lets your users write their own arbitrary logic.
Documentation
mod common;

#[test]
fn std_typeof() {
	common::test_program(
		"
print typeof(\"test\")
print typeof(3)
print typeof(3.0)
print typeof(3f)
print typeof(3i)
print typeof(-1)
print typeof(true)
print typeof(false)
	",
		"String\nDecimal\nDecimal\nDecimal\nInteger\nDecimal\nBoolean\nBoolean\n",
	);
}