CameLIGO
1 program
Added 2026-02-27T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: CamelLIGO
Provenance: commit 0b287a4096 · authored 2026-02-27T19:48:45+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/cameligoExtensions 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 |
|---|---|---|---|
.mligo | linguist | primary | 12.8K files |
Related languages
LLM-contributed programs
Counter Smart Contract
Provenance: commit 0b287a4096 · authored 2026-02-27T19:48:45+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
(* CameLIGO counter smart contract *)
type storage = int
type parameter =
| Increment of int
| Decrement of int
| Reset
type return = operation list * storage
let add (store : storage) (delta : int) : storage = store + delta
let sub (store : storage) (delta : int) : storage = store - delta
let main (action : parameter) (store : storage) : return =
let new_store : storage =
match action with
| Increment n -> add store n
| Decrement n -> sub store n
| Reset -> 0
in
([] : operation list), new_store
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.)