TOM
1 program
Added 2026-02-07T11:38:29Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Tom
Provenance: commit d67fd847e7 · authored 2026-02-07T12:49:18+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/tomExtensions claimed by this language
1 claim. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.t | wikidata | primary | 2.7M files |
Related languages
LLM-contributed programs
Simple Pattern Matching Example
Provenance: commit d67fd847e7 · authored 2026-02-07T12:49:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
%typeterm Term {
implement { Term }
is_sort(t) { t instanceof Term }
}
%op Term a() {
is_fsym(t) { t instanceof A }
make() { new A() }
}
%op Term f(x:Term) {
is_fsym(t) { t instanceof F }
get_slot(x,t) { ((F)t).getX() }
make(t) { new F(t) }
}
public class SimpleMatch {
%match(subject) {
f(a()) -> { return "Matched f(a())"; }
f(x) -> { return "Matched f(" + `x + ")"; }
x -> { return "Matched " + `x; }
}
return "No match";
}
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.)