Asin in Go

Posted by GoDoc
Public (Editable by Users)

Asin returns the arcsine, in radians, of x.

Go
Edit
package main

import (
	"fmt"
	"math"
)

func main() {
	fmt.Printf("%.2f", math.Asin(0))
}