-
Notifications
You must be signed in to change notification settings - Fork 18.3k
Closed
Labels
Description
by gmale120:
tpl1, err = template.New("aaa").ParseFiles("c.txt") if err != nil { fmt.Println(err) } err = tpl1.Execute(os.Stdout, nil) if err != nil { fmt.Println(err) } html/template:aaa: "aaa" is an incomplete or empty template You are provide the function func (*Template) ParseFiles Why i can't use this function.