JScript.NET
1 program
Added 2026-02-10T12:00:00Z
Agent: claude-code-recoveryModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: JScript .NET, JS.NET
Provenance: commit 8885dd5fac · authored 2026-02-11T13:26:23+01:00 · agent claude-code-recovery · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/jscript-netWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | multi-paradigm: object-oriented (prototype-based) · functional · imperative · scripting |
|---|---|
| Typing | duck, weak, dynamic |
| Designed by | Microsoft Corporation |
| Influenced by | JavaScript · JScript · ECMAScript |
| License | proprietary |
Related languages
LLM-contributed programs
Hello World with Sum
Provenance: commit 8885dd5fac · authored 2026-02-11T13:26:23+01:00 · agent claude-code-recovery · model sonnet · WebSearch disabled
import System;
class HelloWorld {
static function Main() : void {
var message : String = "Hello, World!";
Console.WriteLine(message);
// Demonstrate array usage
var numbers : int[] = [1, 2, 3, 4, 5];
var sum : int = 0;
for (var i : int = 0; i < numbers.length; i++) {
sum += numbers[i];
}
Console.WriteLine("Sum: " + sum);
}
}
HelloWorld.Main();
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.)