add-bool #22

Merged
sashakoshka merged 10 commits from add-bool into main 2025-10-14 23:19:17 -06:00
Showing only changes of commit 2ee954e18f - Show all commits

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 {