ArrayList addition (inc. test, example and documentation)

This commit is contained in:
emirpasic
2015-03-07 17:09:47 +01:00
parent a2f7d2482e
commit 3aa0eeddfb
23 changed files with 496 additions and 32 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ package examples
import "github.com/emirpasic/gods/stacks/arraystack"
func arraystackExample() {
func ArrayStackExample() {
stack := arraystack.New() // empty
stack.Push(1) // 1
stack.Push(2) // 1, 2