Simit is a programming language created in 2014 by Fredrik Kjolstad.
#722on PLDB | 10Years Old |
git clone https://github.com/simit-lang/simit
Simit is an imperative language with statements, control flow and linear algebra expressions.
func minMax(a : float, b : float)
-> (c : float, d : float)
if a < b
c = a;
d = b;
else
c = b;
d = a;
end
end
title | date | score | comments |
---|---|---|---|
Simit: A language for computing on sparse systems | 08/01/2016 | 37 | 3 |