fix: make expected results more descriptive for numbers/circle-area exercise #2

This commit is contained in:
Inanc Gumus
2018-11-07 23:21:41 +03:00
parent 7e1dca66fe
commit a959190208

View File

@ -24,7 +24,6 @@ import (
// For PI you can use `math.Pi` // For PI you can use `math.Pi`
// //
// EXPECTED OUTPUT // EXPECTED OUTPUT
// go run main.go 10
// radius: 10 -> area: 314.1592653589793 // radius: 10 -> area: 314.1592653589793
// //
// BONUS EXERCISE! // BONUS EXERCISE!
@ -32,7 +31,7 @@ import (
// 2. To do that you need to use the correct Printf verb :) // 2. To do that you need to use the correct Printf verb :)
// Instead of `%g` verb below. // Instead of `%g` verb below.
// //
// go run main.go 10 // EXPECTED OUTPUT
// radius: 10 -> area: 314.16 // radius: 10 -> area: 314.16
// --------------------------------------------------------- // ---------------------------------------------------------