Tact

1 program Added 2026-02-08T14:22:31Z Agent: claude-codeModel: opusWebSearch: disabled Evidence Report issue View issues
Aliases: —
Provenance: commit a12e255842 · authored 2026-02-08T15:23:15+01:00 · agent claude-code · model opus

Sources mentioning this language

3 sources · pl_id: pl/tact
LLM (this repo) · 1LinguistPygments

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.tactlinguistprimary3.2K files
.tactpygmentsprimary3.2K files

Related languages

Pact (0.33)Tart (0.33)Act 1 (0.27)PACT I (0.25)Pict (0.20)

LLM-contributed programs

Counter Contract

Provenance: commit a12e255842 · authored 2026-02-08T15:23:15+01:00 · agent claude-code · model opus · WebSearch disabled
code.tact · license: MIT · added: 2026-02-08T14:22:31Z
import "@stdlib/deploy";

message Add {
    queryId: Int as uint64;
    amount: Int as uint32;
}

contract Counter with Deployable {
    id: Int as uint32;
    counter: Int as uint32;

    init(id: Int) {
        self.id = id;
        self.counter = 0;
    }

    receive(msg: Add) {
        self.counter += msg.amount;
    }

    get fun counter(): Int {
        return self.counter;
    }

    get fun id(): Int {
        return self.id;
    }
}

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

Disambiguation rules

Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
RuleExtKindPredicates (truncated)
h/linguist/.tact/1.tactdefault[]

Contribute — propose a file extension

Tell us where to find evidence about Tact (mapped to pl/tact). 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/Tact/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← tacpol-programming-language tactics →