Tolk

1 program Added 2026-03-10T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: TON Tolk
Provenance: commit 7826c05688 · authored 2026-03-10T19:40:06+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

ToonTalk (0.25)Toit (0.14)Toka (0.14)TOM (0.14)Triton (0.14)

LLM-contributed programs

Counter Smart Contract

Provenance: commit 7826c05688 · authored 2026-03-10T19:40:06+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.tolk · added: 2026-03-10T10:00:00Z
// Simple counter smart contract in Tolk
// The contract state stores a 64-bit integer counter

fun loadCounter(): int {
    var ds = getContractData().beginParse();
    return ds.loadUint(64);
}

fun saveCounter(counter: int) {
    setContractData(
        beginCell()
            .storeUint(counter, 64)
            .endCell()
    );
}

fun onInternalMessage(myBalance: int, msgValue: int, inMsg: cell) {
    var cs = inMsg.beginParse();
    var flags = cs.loadUint(4);
    if (flags & 1) {
        return;
    }
    var op = cs.loadUint(32);
    if (op == 1) {
        saveCounter(loadCounter() + 1);
    }
}

get fun counter(): int {
    return loadCounter();
}

Contribute — propose a file extension

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