bund_stdlib_text_classifier 0.4.0

Text classification using Bayes classifier for BUND programming language
Documentation
SOURCES=$(wildcard src/*.rs)
TESTS=$(wildcard tests/*.rs)


all: $(SOURCES) Makefile
	cargo build

rebuild:
	make clean
	make all

test: $(TESTS)
	cargo test -- --show-output

clean:
	cargo clean
	cargo update

commit:
	aic -ac
	git push