blz is a programming language created in 2015.
#1694on PLDB | 9Years Old |
git clone https://github.com/blazingkin/blz-ospl
An 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 |