Files
yaegi/_test/bin2.go
T

14 lines
101 B
Go

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