Chalk
1 program
Added 2026-02-12T00:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1ffc590576 · authored 2026-02-12T12:23:31+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
Simple Trait Hierarchy
Provenance: commit 1ffc590576 · authored 2026-02-12T12:23:31+01:00 · agent claude-code · model sonnet · WebSearch disabled
// Define a simple trait hierarchy
trait Clone { }
trait Copy where Self: Clone { }
struct i32 { }
struct bool { }
impl Clone for i32 { }
impl Copy for i32 { }
impl Clone for bool { }
impl Copy for bool { }