From bdf9f143be02291f2db026b01778dabb4f24c0a3 Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Mon, 20 Jun 2022 16:36:56 +0100 Subject: [PATCH] square roost --- subjects/squareroot/README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/subjects/squareroot/README.md b/subjects/squareroot/README.md index af8c4239..83aef7bd 100644 --- a/subjects/squareroot/README.md +++ b/subjects/squareroot/README.md @@ -19,16 +19,18 @@ Here is a possible program to test your function: ```go package main -import "fmt" +import ( + "fmt" + "piscine" func main() { - fmt.Println(SquareRoot(9)) - fmt.Println(SquareRoot(16)) - fmt.Println(SquareRoot(25)) - fmt.Println(SquareRoot(26)) - fmt.Println(SquareRoot(0)) - fmt.Println(SquareRoot(-1)) - fmt.Println(SquareRoot(1)) + fmt.Println(piscine.SquareRoot(9)) + fmt.Println(piscine.SquareRoot(16)) + fmt.Println(piscine.SquareRoot(25)) + fmt.Println(piscine.SquareRoot(26)) + fmt.Println(piscine.SquareRoot(0)) + fmt.Println(piscine.SquareRoot(-1)) + fmt.Println(piscine.SquareRoot(1)) } ```