ginger/types/types.go
2014-10-18 17:09:30 -04:00

12 lines
319 B
Go

// This package describes ginger's base types and the interfaces covered by them
package types
// Elem is a generic type which can be used as a wrapper type for all ginger
// types, both base types and data structures
type Elem interface {
}
// Number can either be either an Int or a Float
type Number interface {
}