fix(reversemenuindex): miss import piscine and add second # to the title

This commit is contained in:
Tiago Collot 2022-09-22 16:08:37 +01:00
parent 024d17a2c6
commit 460754b7b3
1 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# reversemenuindex ## reversemenuindex
### Instructions ### Instructions
@ -23,10 +23,13 @@ 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(ReverseMenuIndex([]string{"desserts", "mains", "drinks", "starters"})) fmt.Println(piscine.ReverseMenuIndex([]string{"desserts", "mains", "drinks", "starters"}))
} }
``` ```