blob: 041ce74c6769148349cc264f3bc6d2f0c2a9ee10 [file] [log] [blame]
package main
import (
"fmt"
"io/ioutil"
)
func main() {
dat, _ := ioutil.ReadFile("hello.txt")
strdat := string(dat)
fmt.Println(strdat)
}