gura is a programming language created in 2012 by Yutaka Saito.
#1433on PLDB | 12Years Old |
git clone https://github.com/gura-lang/gura
Gura is an iterator-oriented programming language that focuses on iterators with improved functions for calculation and data processing. It makes you be able to write an artificial code for what used to need a lot of codes of repeat syntax.
prime() = {
p = []
for (n in 2..):xiter {
if (!(n % p.each() == 0).or()) {
p.add(n)
n
}
}
}
title | date | score | comments |
---|---|---|---|
Gura: Iterator-Oriented Programming Language | 08/23/2014 | 56 | 8 |