mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
16 lines
140 B
Go
16 lines
140 B
Go
package main
|
|
|
|
import (
|
|
_ "embed"
|
|
"fmt"
|
|
)
|
|
|
|
//go:embed file
|
|
var e string = "hi"
|
|
|
|
func main() {
|
|
fmt.Println(e)
|
|
e = "why"
|
|
fmt.Println(e)
|
|
}
|