Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
package main import ( "fmt" "math" ) func main() { x := 10.0 result := math.Logb(x) fmt.Print(result) } /* run: 3 */