add 04.4.md translate for ch 4.4

This commit is contained in:
Zhanming Qi
2013-04-22 20:34:09 +08:00
parent 258c50e72a
commit 0364d180eb
10 changed files with 371 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
package main
import (
"fmt"
"./trans"
)
var twoPi = 2 * trans.Pi
func main() {
fmt.Printf("2*Pi = %g\n", twoPi) // 2*Pi = 6.283185307179586
}