Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 275 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 275 Bytes

BeanScript

Simple scripting language for easy use in other projects.

Basic Usage

beans ./path/to/script.bean

Use --help for more information or -i for interactive mode.

Example

fn(<greet>): {
	print("Hello,", p(0))
}

greet("World") // Hello, World