Heron is a programming language created in 2016 by Christopher Diggins.
| #1257on PLDB | 10Years Old |
git clone https://github.com/cdiggins/heron-languageA pure functional type-inferred language based on JavaScript
// Named function with statement body
function sum(xs) {
var result = 0;
for (var x in xs)
result += x;
return result;
}| Feature | Supported | Example | Token |
|---|---|---|---|
| Comments | ✓ | // A comment | |
| Line Comments | ✓ | // A comment | // |
| Semantic Indentation | X |