mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
- switched most of existing Go code to new export syntax
- adjusted lang doc R=r DELTA=192 (26 added, 65 deleted, 101 changed) OCL=13844 CL=13848
This commit is contained in:
parent
d28acc42ec
commit
2f4352a26d
25 changed files with 118 additions and 157 deletions
|
|
@ -5,7 +5,6 @@
|
|||
package math
|
||||
|
||||
import math "math"
|
||||
export exp
|
||||
|
||||
/*
|
||||
* exp returns the exponential func of its
|
||||
|
|
@ -27,7 +26,7 @@ const
|
|||
maxf = 10000;
|
||||
)
|
||||
|
||||
func
|
||||
export func
|
||||
exp(arg float64) float64
|
||||
{
|
||||
var x, fract, temp1, temp2, xsq float64;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue