Added array type

This commit is contained in:
2025-02-09 20:25:37 +01:00
parent c69f1aab5c
commit 7634244c56
13 changed files with 71 additions and 22 deletions

View File

@ -1,6 +1,6 @@
package types
var PointerAny = &Pointer{To: nil}
var AnyPointer = &Pointer{To: nil}
// Pointer is the address of an object.
type Pointer struct {
@ -13,7 +13,7 @@ func (p *Pointer) Name() string {
return "Pointer"
}
return "Pointer:" + p.To.Name()
return "*" + p.To.Name()
}
// Size returns the total size in bytes.