heapnotize 0.1.0

A pointer type for array allocation. That's right, turn your stack into a heap.
Documentation
.PHONY: clean
all: format lint check test

.PHONY: format
format:
	cargo fmt

.PHONY: lint
lint:
	cargo clippy

.PHONY: check
check:
	cargo check
	cargo check --examples

.PHONY: test
test:
	cargo test