LabTalk

1 program Added 2026-02-27T00:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: LabTalk scripting
Provenance: commit f6ce308951 · authored 2026-02-27T21:43:57+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

SwiftScript (0.33)Kotlin Script (0.29)CLEO (0.28)GMSH (0.28)pgScript (0.28)

LLM-contributed programs

Fibonacci Sequence

Provenance: commit f6ce308951 · authored 2026-02-27T21:43:57+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.labtalk · added: 2026-02-27T00:00:00Z
// Fibonacci sequence in LabTalk (OriginLab scripting language)
// Demonstrates variables, for-loops, and string-formatted output

int n = 10;
double a = 0, b = 1, tmp;
int i;

type "Fibonacci sequence:";
for (i = 1; i <= n; i++) {
    type "F($(i)) = $(a)";
    tmp = a + b;
    a = b;
    b = tmp;
}

Contribute — propose a file extension

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