From c589cb8f08a28944fa19bd6c848c64383714e3eb Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sat, 18 Oct 2014 17:09:30 -0400 Subject: [PATCH] changed my mind about types --- types/types.go | 10 ---------- 1 file changed, 10 deletions(-) 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