package main import ( _ "embed" "fmt" ) //go:embed sample.txt var s string func main() { // //go:embed sample.txt // var s string fmt.Println(s) }