mirror of https://github.com/01-edu/public.git
2 changed files with 49 additions and 1 deletions
@ -0,0 +1,13 @@
|
||||
package main |
||||
|
||||
import ( |
||||
"fmt" |
||||
"piscine" |
||||
) |
||||
|
||||
func main() { |
||||
fmt.Println(piscine.Itoa(12345)) |
||||
fmt.Println(piscine.Itoa(0)) |
||||
fmt.Println(piscine.Itoa(-1234)) |
||||
fmt.Println(piscine.Itoa(987654321)) |
||||
} |
Loading…
Reference in new issue