From 3e36a8e0e83fb36063b699328ec7c7b1caee3099 Mon Sep 17 00:00:00 2001 From: jotapero Date: Mon, 17 Oct 2022 16:01:04 +0100 Subject: [PATCH] docs(countalpha): fix subject - added missing package piscine --- subjects/countalpha/README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/subjects/countalpha/README.md b/subjects/countalpha/README.md index 5869f155..d051449c 100644 --- a/subjects/countalpha/README.md +++ b/subjects/countalpha/README.md @@ -19,13 +19,18 @@ Here is a possible program to test your function: ```go package main -import "fmt" +import ( + "fmt" + + "piscine" +) func main() { - fmt.Println(CountAlpha("Hello world")) - fmt.Println(CountAlpha("H e l l o")) - fmt.Println(CountAlpha("H1e2l3l4o")) + fmt.Println(piscine.CountAlpha("Hello world")) + fmt.Println(piscine.CountAlpha("H e l l o")) + fmt.Println(piscine.CountAlpha("H1e2l3l4o")) } + ``` And its output: