small fix

This commit is contained in:
MSilva95 2022-07-08 11:12:13 +01:00 committed by Dav Hojt
parent 7ed376c50c
commit c9790ce688
1 changed files with 1 additions and 4 deletions

View File

@ -21,11 +21,8 @@ package main
import "fmt"
func main() {
ints := []int{6, 7, 8, 9,}
l := PopInt(ints)
fmt.Println(l)
fmt.Println(PopInt([]int{6, 7, 8, 9}))
}
```