EnQueue it will be added new value into our list
(n any)
| 13 | |
| 14 | // EnQueue it will be added new value into our list |
| 15 | func EnQueue(n any) { |
| 16 | ListQueue = append(ListQueue, n) |
| 17 | } |
| 18 | |
| 19 | // DeQueue it will be removed the first value that added into the list |
| 20 | func DeQueue() any { |