You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
531 B

5 years ago
## printnbr
5 years ago
### Instructions
Write a function that prints an `int` passed in parameter.
All possible values of type `int` have to go through.
You cannot convert to `int64`.
5 years ago
### Expected function
```go
func PrintNbr(n int) {
}
```
5 years ago
### Usage
Here is a possible program to test your function :
```go
package main
4 years ago
import (
"piscine"
4 years ago
"github.com/01-edu/z01"
)
func main() {
piscine.PrintNbr(-123)
piscine.PrintNbr(0)
piscine.PrintNbr(123)
4 years ago
z01.PrintRune('\n')
}
```
And its output :
```console
3 years ago
$ go run .
-1230123
3 years ago
$
```