blz is a programming language created in 2015.
| #1717on PLDB | 11Years Old |
git clone https://github.com/blazingkin/blz-osplAn open source programming language
import Lists
:main
# Print cubes of even numbers
evens = range(1000).filter!(x -> x % 2 == 0)
print(evens.map!(x -> x ** 3)
end| Feature | Supported | Example | Token |
|---|---|---|---|
| Comments | ✓ | # A comment | |
| Line Comments | ✓ | # A comment | # |
| Semantic Indentation | X |