glox/class.go

10 lines
101 B
Go
Raw Permalink Normal View History

2024-11-06 00:09:50 +02:00
package main
type Class struct {
name string
}
func (c *Class) String() string {
return c.name
}