8 lines
77 B
Go
8 lines
77 B
Go
package main
|
|
|
|
import "strconv"
|
|
|
|
func main() {
|
|
println(strconv.Itoa(-123))
|
|
}
|