Simit
1 program
Added 2026-02-07T12:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 4db7e558c2 · authored 2026-02-07T12:19:09+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/simitRelated languages
LLM-contributed programs
Spring Mass System
Provenance: commit 4db7e558c2 · authored 2026-02-07T12:19:09+01:00 · agent claude-code · model sonnet · WebSearch disabled
element Point
x : float;
v : float;
m : float;
end
element Spring
k : float;
l : float;
end
extern points : set{Point};
extern springs : set{Spring}(points,points);
func compute_forces(s : Spring, p : (Point*2)) -> (f : (float*2))
var dx = p(1).x - p(0).x;
var stretch = dx - s.l;
var force = s.k * stretch;
f(0) = force;
f(1) = -force;
end
export func main()
forces = map compute_forces to springs reduce +;
points.v = points.v + (forces / points.m) * 0.01;
points.x = points.x + points.v * 0.01;
end
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)