Browse Source

Remove piscine from imports as commented by Miguel

1275-popint
estlop 2 years ago
parent
commit
916eefc0c9
  1. 8
      subjects/popint/README.md

8
subjects/popint/README.md

@ -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)
}
```

Loading…
Cancel
Save