gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/defer3.go (about) 1 package main 2 3 import ( 4 "net/http" 5 "net/http/httptest" 6 ) 7 8 func main() { 9 println("hello") 10 mux := http.NewServeMux() 11 server := httptest.NewServer(mux) 12 defer server.Close() 13 } 14 15 // Output: 16 // hello