rspl 0.1.2

A stream processor language.
Documentation
1
2
3
4
5
6
7
8
9
10
EXAMPLES = $(patsubst %.rs, %.md, $(wildcard examples/*.rs))

%.md: %.rs
	sed 's/^\/\/&//' $< > $@

all: $(EXAMPLES)
	cargo fmt --all -- --check
	cargo clippy --all --benches --examples --tests --all-features
	cargo doc --no-deps --document-private-items
	cargo test