ginger/types/types.go

18 lines
326 B
Go
Raw Normal View History

2014-10-06 22:20:25 +00:00
// 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 {
}
type Str string
2014-10-06 22:20:25 +00:00
type Int int
2014-10-06 22:20:25 +00:00
type Float float32
type Char rune
type Err error