From a92852bc0621f55f368d4223ac1313716c2b00b6 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Mon, 6 Oct 2014 18:20:25 -0400 Subject: [PATCH] added types package --- types/types.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 types/types.go diff --git a/types/types.go b/types/types.go new file mode 100644 index 0000000..e47bbfd --- /dev/null +++ b/types/types.go @@ -0,0 +1,17 @@ +// 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 String string + +type Integer int + +type Float float32 + +type Char rune + +type Error error