From 05f680e5d71ed86a9e6395a114f6949a2985395d Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Wed, 28 Sep 2022 12:03:14 +0100 Subject: [PATCH] fix(rockandroll): change console name from 'go' to 'console' --- 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 04651be8..a8719232 100644 --- a/subjects/rockandroll/README.md +++ b/subjects/rockandroll/README.md @@ -23,19 +23,19 @@ Here is a possible program to test your function: package main import ( - "fmt" - "piscine" + "fmt" + "piscine" ) func main() { - fmt.Println(piscine.RockAndRoll(4)) - fmt.Println(piscine.RockAndRoll(9)) - fmt.Println(piscine.RockAndRoll(6)) + fmt.Println(piscine.RockAndRoll(4)) + fmt.Println(piscine.RockAndRoll(9)) + fmt.Println(piscine.RockAndRoll(6)) } ``` And its output: -```go +```console rock$ $ roll$