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