2026-02-02 11:41:26 +00:00

12 lines
213 B
Plaintext

declare struct Color(raw: bounded)
[[
BLACK: Color(0b),
WHITE: Color(65535b),
RED: Color(63488b),
GREEN: Color(2016b),
BLUE: Color(31b)
]]
declare contract Gfx host {
fn clear(color: Color): void;
}