-
Notifications
You must be signed in to change notification settings - Fork 7
Math Abs
Serkan Algur edited this page Nov 22, 2020
·
1 revision
func Abs(n float64) float64
Original : https://www.php.net/manual/en/function.abs.php
Returns the absolute value of the number.
package main
import (
"fmt"
"github.com/serkanalgur/phpfuncs"
)
func main() {
fmt.Println(phpfuncs.Abs(2))
}
// Expected Result is '2'