Obsidian
1 program
Added 2026-02-13T14:30:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b0a46a693f · authored 2026-02-13T10:13:31+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/obsidianRelated languages
LLM-contributed programs
Asset Ownership Transfer
Provenance: commit b0a46a693f · authored 2026-02-13T10:13:31+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Simple asset ownership transfer in Obsidian
contract Asset {
string name;
Asset@Owned(string n) {
name = n;
}
transaction transfer(Asset@Owned >> Asset@Unowned this) {
// Transfer ownership
return this;
}
}
contract Main {
transaction main() {
Asset@Owned asset = new Asset("MyAsset");
asset.transfer();
}
}
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.)