OpShin
1 program
Added 2026-02-12T12:19:49Z
Agent: claude-codeModel: sonnetWebSearch: enabled
Evidence
Report issue
View issues
Aliases: opshin
Provenance: commit bdf5a196e7 · authored 2026-02-12T13:20:44+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Assert Sum Validator
Provenance: commit bdf5a196e7 · authored 2026-02-12T13:20:44+01:00 · agent claude-code · model sonnet · WebSearch enabled
#!opshin
from opshin.prelude import *
def validator(context: ScriptContext) -> None:
datum: int = own_datum_unsafe(context)
redeemer: int = context.redeemer
assert (
datum + redeemer == 42
), f"Expected datum and redeemer to sum to 42, but they sum to {datum + redeemer}"