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/xppExtensions 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 |
|---|---|---|---|
.xpp | pygments | primary | 3.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
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.)