X++

1 program Added 2025-11-12T11:44:37Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: —
Provenance: commit 2b16ae27d5 · authored 2025-11-12T12:44:37+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

3 sources · pl_id: pl/xpp
LLM (this repo) · 1PygmentsEsolang

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
.xpppygmentsprimary3.1K files

LLM-contributed programs

X++ Class to Query and Print Customer Data

Provenance: commit 2b16ae27d5 · authored 2025-11-12T12:44:37+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.xpp · license: MIT License · added: 2025-11-12T11:44:37Z
class TestCustomer
{
    /// <summary>
    /// The main method, which is the entry point for the class.
    /// </summary>
    /// <param name = "_args">The arguments.</param>
    public static void main(Args _args)
    {
        // Declare a variable for the CustTable table.
        CustTable custTable;
        // Create a query that selects all customers.
        Query query = new Query();
        // The query should select from the CustTable table.
        QueryBuildDataSource qbds = query.addDataSource(tableNum(CustTable));
        // Restrict the results to the first 100 records.
        qbds.addRange(fieldNum(CustTable, RecId)).value(SysQuery::range(1, 100));
        // Create a query runner that will execute the query.
        QueryRun queryRun = new QueryRun(query);
        // Check whether the query can be run.
        if (queryRun.prompt())
        {
            // Loop through the results.
            while (queryRun.next())
            {
                // Get the current record from the query.
                custTable = queryRun.get(tableNum(CustTable));
                // Print the account number and name of the customer.
                info(strFmt("%1, %2", custTable.AccountNum, custTable.name()));
            }
        }
    }
}

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 X++ (mapped to pl/xpp). 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/X++/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← X(y) X-ASM →