blob: 6235038f3c26892bbf5ee36f3dd1eef56ccbf7ec [file] [log] [blame]
package main
import (
"fmt"
"net"
"os"
"time"
)
func main() {
fmt.Println("Welcome to the playground!")
fmt.Println("The time is", time.Now())
fmt.Println("And if you try to open a file:")
fmt.Println(os.Open("filename"))
fmt.Println("Or access the network:")
fmt.Println(net.Dial("tcp", "google.com"))
}