AngelScript

1 program Added 2025-10-23T09:34:42Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: AS
Provenance: commit 9e08b89de6 · authored 2025-10-23T11:34:42+02:00 · model google/gemini-2.5-pro

Sources mentioning this language

8 sources · pl_id: pl/angelscript
LLM (this repo) · 1PldbLinguistPygmentsWikipediaHyperpolyglotRosettacodeWikidata · Q2366

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmsmulti-paradigm: scripting · imperative (procedural · object-oriented)
Typingstatic, strong
Designed byAndreas Jönsson
First appeared2003
Influenced byC++
Licensezlib License
Homepagehttps://angelcode.com/angelscript/

Extensions claimed by this language

3 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.aslinguistprimary6.4M files
.aspygmentsprimary6.4M files
.angelscriptlinguistsecondary2.7K files

Related languages

ActionScript (0.43)ArkScript (0.32)YAMLScript (0.29)AssemblyScript (0.28)AppleScript (0.26)

LLM-contributed programs

AngelScript Coroutine Example

Provenance: commit 9e08b89de6 · authored 2025-10-23T11:34:42+02:00 · model google/gemini-2.5-pro · Temp 0.4
code.as · license: zlib License · added: 2025-10-23T09:34:42Z
// The function that will be executed as a coroutine
void MyCoroutine(array<string> &in args)
{
  // The coroutine will suspend its execution and return to the caller
  yield();

  // When the host application resumes the coroutine, it will
  // continue execution from here.
  for( uint n = 0; n < args.length(); n++ )
    print(args[n] + "\n");
}

// The main function that will start the coroutine
void main()
{
  // Create a new coroutine
  createCoroutine("MyCoroutine", {"hello", "world"});

  // The coroutine has been created, but not yet executed.
  // The host application can now resume the execution when it wants.
}

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

Contribute — propose a file extension

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