generate: Add bool data structure

This commit is contained in:
Sasha Koshka 2025-10-15 00:31:30 -04:00
parent cdfccb0f1c
commit 2ee954e18f

View File

@ -49,6 +49,12 @@ func (typ TypeFloat) String() string {
return fmt.Sprintf("F%d", typ.Bits)
}
type TypeBool struct { }
func (TypeBool) String() string {
return "Bool"
}
type TypeString struct { }
func (TypeString) String() string {