Files
moxa/_test/bin2.go

14 lines
101 B
Go

package main
import (
"fmt"
"math"
)
func main() {
fmt.Println(math.Abs(-5))
}
// Output:
// 5