Remove piscine from imports as commented by Miguel

This commit is contained in:
estlop 2022-07-01 11:49:29 +01:00 committed by Dav Hojt
parent bcc4be2d63
commit 7ed376c50c
1 changed files with 3 additions and 5 deletions

View File

@ -19,14 +19,12 @@ Here is a possible program to test your function:
```go
package main
import (
"piscine"
"fmt"
)
import "fmt"
func main() {
ints := []int{6, 7, 8, 9,}
l := piscine.PopInt(ints)
l := PopInt(ints)
fmt.Println(l)
}
```