Skip to content

Commit

Permalink
docs: README
Browse files Browse the repository at this point in the history
  • Loading branch information
myyrakle committed Oct 3, 2023
1 parent 05bd22a commit e386169
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gost

![](https://img.shields.io/badge/language-Go-00ADD8) ![](https://img.shields.io/badge/version-v0.4.0-brightgreen) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)
![](https://img.shields.io/badge/language-Go-00ADD8) ![](https://img.shields.io/badge/version-v0.5.0-brightgreen) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)

![](./etc/gorris.jpg)

Expand Down Expand Up @@ -76,5 +76,16 @@ func main() {
hashMap.Insert(gost.String("baz"), gost.Int(3))
gost.Println("hashMap: {}", hashMap)
linkedList := gost.LinkedListNew[gost.Int]()
linkedList.PushBack(gost.Int(1))
linkedList.PushFront(gost.Int(2))
linkedList.PushBack(gost.Int(3))
linkedList2 := gost.LinkedListNew[gost.Int]()
linkedList2.PushBack(gost.Int(4))
linkedList2.PushFront(gost.Int(5))
linkedList.Append(&linkedList2)
gost.Println("linkedList: {}", linkedList)
}
```

0 comments on commit e386169

Please sign in to comment.