changed my mind about types

This commit is contained in:
Brian Picciano 2014-10-18 17:09:30 -04:00
parent 7d23782048
commit c589cb8f08

View File

@ -9,13 +9,3 @@ type Elem interface {
// Number can either be either an Int or a Float // Number can either be either an Int or a Float
type Number interface { type Number interface {
} }
type Str string
type Int int
type Float float32
type Char rune
type Err error