Go import

1 개요[ | ]

Go import
Go
CPU
0.4s
MEM
159M
0.3s
Copy
package main

import (
	"fmt"
	"math"
)

func main() {
	fmt.Printf("Now you have %g problems.\n", math.Sqrt(7))
}
Now you have 2.6457513110645907 problems.

2 같이 보기[ | ]

3 참고[ | ]