Qt Script

1 program Added 2026-03-17T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: QtScript
Provenance: commit 59dc04357e · authored 2026-03-17T01:43:20+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/qt-script
LLM (this repo) · 1Linguist

Extensions 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.
ExtensionSourceStrengthSWH
.qslinguistprimary2.7M files

Related languages

Praat (0.38)ChatScript (0.37)Scrapscript (0.37)VoltScript (0.37)ZScript (0.35)

LLM-contributed programs

OOP Prototype Demo

Provenance: commit 59dc04357e · authored 2026-03-17T01:43:20+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.qs · added: 2026-03-17T10:00:00Z
function Person(name, age) {
    this.name = name;
    this.age = age;
}

Person.prototype.greet = function() {
    print("Hello, my name is " + this.name + " and I am " + this.age + " years old.");
}

Person.prototype.toString = function() {
    return this.name + " (age " + this.age + ")";
}

var people = [
    new Person("Alice", 30),
    new Person("Bob", 25),
    new Person("Charlie", 35)
];

for (var i = 0; i < people.length; i++) {
    people[i].greet();
}
print("People: " + people.join(", "));

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.)

Disambiguation rules

Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
RuleExtKindPredicates (truncated)
h/linguist/.qs/1.qspredicates[{"kind": "any", "regexes": ["(\\w+\\.prototype\\.\\w+|===|\\bvar\\b)"]}]

Contribute — propose a file extension

Tell us where to find evidence about Qt Script (mapped to pl/qt-script). 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/Qt Script/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← qt qtscript →