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