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/simit
LLM (this repo) · 1Pldb

Related languages

StreamIt (0.31)SIMSCRIPT (0.29)Simkin (0.25)Sibilant (0.21)Simulink (0.21)

LLM-contributed programs

Spring Mass System

Provenance: commit 4db7e558c2 · authored 2026-02-07T12:19:09+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.sim · license: MIT · added: 2026-02-07T12:30:00Z
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.)

Contribute — propose a file extension

Tell us where to find evidence about Simit (mapped to pl/simit). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Simit/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← simfactory Simkin →