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-scriptExtensions 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 |
|---|---|---|---|
.qs | linguist | primary | 2.7M files |
Related languages
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
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.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.qs/1 | .qs | predicates | [{"kind": "any", "regexes": ["(\\w+\\.prototype\\.\\w+|===|\\bvar\\b)"]}] |