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