10 lines
75 B
Go
10 lines
75 B
Go
package main
|
|
|
|
import (
|
|
"math"
|
|
)
|
|
|
|
func main() {
|
|
println(math.Abs(-1.2))
|
|
}
|