Dynamic, curried, and minimal programming language. Find the implementation on Github.
even = x -> x % 2 == 0square = x -> x * xsumOddSquares = sum . filter (not . even) . map squaresumOddSquares [1..100]# => 166650
Krill is fully functionaly and allows you to write small and concise programs in a functional style. Head to getting started to learn more.