mirror of
https://github.com/jefferyjob/go-easy-utils.git
synced 2025-12-24 13:18:09 +08:00
16 lines
148 B
Go
16 lines
148 B
Go
package mathx
|
|
|
|
import "fmt"
|
|
|
|
func ExampleAbs() {
|
|
res1 := Abs(-6)
|
|
res2 := Abs(9)
|
|
|
|
fmt.Println(res1)
|
|
fmt.Println(res2)
|
|
|
|
// Output:
|
|
// 6
|
|
// 9
|
|
}
|