windjammer 0.48.0

A simple language inspired by Go, Ruby, and Elixir that transpiles to Rust - 80% of Rust's power with 20% of the complexity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
.PHONY: ui-wasm game clean serve-ui

ui-wasm:
	@echo "Building UI counter example for WASM..."
	@../target/release/wj build ui_counter_full.wj --target wasm
	@cd ../build && wasm-pack build --target web --out-dir ../examples/pkg
	@echo "WASM build complete"

serve-ui: ui-wasm
	@echo "Starting server..."
	@../target/release/wj run serve_ui.wj

clean:
	@rm -rf pkg/
	@rm -rf ../build/
	@echo "Cleaned"