Browse Source

Remove piscine from imports as commented by Miguel

DEV-3241-DEV-3242-corewar
estlop 2 years ago committed by Dav Hojt
parent
commit
7ed376c50c
  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