summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--stack.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/stack.go b/stack.go
index 49a59da..095811e 100644
--- a/stack.go
+++ b/stack.go
@@ -1,8 +1,10 @@
// Package stack implements a simple LIFO Stack for generic values
package stack
-// Stack contains a generic value
+// Value is a generic value
type Value interface{}
+
+// Stack contains generic values
type Stack []Value
// NewStack returns a new Stack