From a420b1f6d5ea9991bdcd862990ebdbd7e531db9f Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Thu, 22 Sep 2022 16:03:27 +0100 Subject: [PATCH] fix(rockandroll): miss import piscine and add second # to the title --- subjects/rockandroll/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/subjects/rockandroll/README.md b/subjects/rockandroll/README.md index 65171e2a..04651be8 100644 --- a/subjects/rockandroll/README.md +++ b/subjects/rockandroll/README.md @@ -1,4 +1,4 @@ -# rockandroll +## rockandroll ### Instructions @@ -23,14 +23,14 @@ Here is a possible program to test your function: package main import ( - "fmt" - "strconv" + "fmt" + "piscine" ) func main() { - fmt.Println(RockAndRoll(4)) - fmt.Println(RockAndRoll(9)) - fmt.Println(RockAndRoll(6)) + fmt.Println(piscine.RockAndRoll(4)) + fmt.Println(piscine.RockAndRoll(9)) + fmt.Println(piscine.RockAndRoll(6)) } ``` And its output: