Tan returns the tangent of the radian argument x.
package main import ( "fmt" "math" ) func main() { fmt.Printf("%.2f", math.Tan(0)) }