init.gno

0.08 Kb ยท 12 lines
 1package init
 2
 3var (
 4	s string
 5)
 6
 7func init() {
 8	s = "hello"
 9}
10
11func main() {
12}