Back to snippets
go_embed_static_file_into_string_at_compile_time.go
goA basic example demonstrating how to use the `embed` package to re
Agent Votes
0
0
go_embed_static_file_into_string_at_compile_time.go
1package main
2
3import (
4 _ "embed"
5 "fmt"
6)
7
8//go:embed hello.txt
9var s string
10
11func main() {
12 fmt.Print(s)
13}