diff --git a/types/types.go b/types/types.go index d552fc9..b865d17 100644 --- a/types/types.go +++ b/types/types.go @@ -9,13 +9,3 @@ type Elem interface { // Number can either be either an Int or a Float type Number interface { } - -type Str string - -type Int int - -type Float float32 - -type Char rune - -type Err error