From c4f899dcd6c3d05b5dd73ea97cee5863fbcbefa2 Mon Sep 17 00:00:00 2001 From: Alex Palaistras Date: Sun, 4 Oct 2015 19:31:43 +0100 Subject: [PATCH] Added `Destroy` calls in README example --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index a8684d4..784b30c 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,9 @@ func main() { context, _ := php.NewContext(os.Stdout) context.Exec("index.php") + + context.Destroy() + engine.Destroy() } ```