close

package main
   import(
         "fmt"
         "net"
         "os"
         "time"
       )

     func main(){
            fmt.Println("Welcome to the playground!")
            fmt.Println("The time is", time.Now())
            fmt.Println(os.Open("D:\\test"))
            fmt.Println("or access the network:")
            fmt.Println(net.Dial("tcp","google.com:80"))
            }

arrow
arrow

    奧比 發表在 痞客邦 留言(0) 人氣()