JADE
1 program
Added 2026-02-07T11:02:50Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Jade Application Development Environment
Provenance: commit a9a956d143 · authored 2026-02-07T12:03:30+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/jadeWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| License | GNU Lesser General Public License |
|---|---|
| Homepage | https://jade-project.gitlab.io/ |
Extensions claimed by this language
2 claims. 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 |
|---|---|---|---|
.pug | pygments | primary | 4.2M files |
.jade | pygments | secondary | 4.2M files |
Related languages
LLM-contributed programs
Person Class Definition
Provenance: commit a9a956d143 · authored 2026-02-07T12:03:30+01:00 · agent claude-code · model sonnet · WebSearch disabled
class Person
{
public:
name: String;
age: Integer;
create(pName: String; pAge: Integer): Person;
begin
self.name := pName;
self.age := pAge;
return self;
end;
display();
begin
write "Name: " & self.name;
write "Age: " & self.age.String;
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.)