ten is a programming language created in 2019 by Ray Stubbs.
#2031on PLDB | 5Years Old |
git clone https://github.com/ten-lang/libten
A minimal, consistent, embeddable scripting language.
each( irange( 1, 101 )
[ num ]
if
num % 15 = 0: show"FizzBuzz "
num % 3 = 0: show"Fizz "
num % 5 = 0: show"Buzz "
else
show( num, " " )
)
show( N )