Koto is a programming language created in 2020 by Ian Hobson.
#2033on PLDB | 5Years Old |
git clone https://github.com/koto-lang/koto
A lightweight scripting language for Rust applications.
# Fizz buzz in Koto
# https://en.wikipedia.org/wiki/Fizz_buzz
fizz_buzz = |n|
match n % 3, n % 5
0, 0 then 'Fizz Buzz'
0, _ then 'Fizz'
_, 0 then 'Buzz'
else '{n}'
for i in 1..=25
print fizz_buzz i