GitHub - tomekw/stcc: The Super Tiny Compiler in Ada

1 min read Original article ↗

Repository files navigation

STCC

The Super Tiny Compiler, but in Ada.

Usage

From release:

$ ./stcc
Input:
(add 2 (subtract 4 2))

Output:
add(2, subtract(4, 2));

With Tada:

$ tada run
Input:
(add 2 (subtract 4 2))

Output:
add(2, subtract(4, 2));

Tests:

$ tada test

Disclaimer

This codebase is written by hand.