new file: linear/queue.go

This commit is contained in:
Acid
2026-04-21 19:23:22 -04:00
parent 19c8d52228
commit 8138079c23
3 changed files with 73 additions and 6 deletions
+1 -2
View File
@@ -1,4 +1,4 @@
package stack
package linear
import (
"testing"
@@ -13,5 +13,4 @@ func TestPush(t *testing.T) {
if len(s.Container) != 3 {
t.Errorf("expected 2 items, got %d", len(s.Container))
}
}