Browse Source

docs(countalpha): fix subject

- added missing package piscine
DEV-4017-prototypes-exercise-1-animals
jotapero 2 years ago committed by José Rosendo
parent
commit
3e36a8e0e8
  1. 13
      subjects/countalpha/README.md

13
subjects/countalpha/README.md

@ -19,13 +19,18 @@ Here is a possible program to test your function:
```go ```go
package main package main
import "fmt" import (
"fmt"
"piscine"
)
func main() { func main() {
fmt.Println(CountAlpha("Hello world")) fmt.Println(piscine.CountAlpha("Hello world"))
fmt.Println(CountAlpha("H e l l o")) fmt.Println(piscine.CountAlpha("H e l l o"))
fmt.Println(CountAlpha("H1e2l3l4o")) fmt.Println(piscine.CountAlpha("H1e2l3l4o"))
} }
``` ```
And its output: And its output:

Loading…
Cancel
Save