TinyCat is an AI-assisted toy compiler written in Go. It combines a deterministic compiler pipeline with a small PyTorch GPT-style model trained on TinyCat programs. The guiding principle is: GPT proposes, compiler verifies.
Milestone 1: project setup.
This version only creates the Go module, project folders, example files, and a basic CLI shape. The language is not implemented yet.
go run ./cmd/tinycat check examples/hello.cat
go run ./cmd/tinycat run examples/hello.catExpected output for now:
check: compiler not implemented yet
run: interpreter not implemented yet