FunC
1 program
Added 2026-02-06T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 2975e0843f · authored 2026-02-06T12:49:38+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/funcExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.fc | pygments | primary | 43.5K files |
.func | pygments | secondary | 11.4K files |
Related languages
LLM-contributed programs
Simple Counter Contract
Provenance: commit 2975e0843f · authored 2026-02-06T12:49:38+01:00 · agent claude-code · model sonnet · WebSearch disabled
() recv_internal(int msg_value, cell in_msg, slice in_msg_body) impure {
var cs = in_msg.begin_parse();
var flags = cs~load_uint(4);
slice sender_address = cs~load_msg_addr();
int op = in_msg_body~load_uint(32);
slice ds = get_data().begin_parse();
int counter = ds~load_uint(64);
if (op == 1) {
counter += 1;
} elseif (op == 2) {
counter -= 1;
}
set_data(begin_cell()
.store_uint(counter, 64)
.end_cell());
}
int get_counter() method_id {
slice ds = get_data().begin_parse();
return ds~load_uint(64);
}
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.)