Browse Source

docs(rectperimeter): added output example

DEV-4017-prototypes-exercise-1-animals
jrosendo 2 years ago committed by José Rosendo
parent
commit
9962ae8f5b
  1. 2
      subjects/rectperimeter/README.md

2
subjects/rectperimeter/README.md

@ -30,6 +30,7 @@ import (
func main() {
fmt.Println(piscine.RectPerimeter(10, 2))
fmt.Println(piscine.RectPerimeter(434343, 898989))
fmt.Println(piscine.RectPerimeter(10, -2))
}
```
@ -39,5 +40,6 @@ And its output:
$ go run .
24$
2666664$
-1$
$
```

Loading…
Cancel
Save