Update README.md

This commit is contained in:
Hamza elkhatri 2022-06-21 00:56:09 +01:00 committed by David Mata
parent 0344c096fd
commit 084e1decc3
1 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ func main() {
fmt.Println(AddIfPositive(-1, 2))
fmt.Println(AddIfPositive(-1, -2))
fmt.Println(AddIfPositive(10,20))
fmt.Println(AddIfPositive(0,20))
}
```
@ -38,4 +39,5 @@ $ go run .
0
0
30
20
```