pollen 0.1.1

Runtime for the pollen programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Copyright (C) 2023 Mateus de Lima Oliveira

all: templatizer

templatizer:
	cargo build --release --offline

clean:
	cargo clean

.PHONY: templatizer clean