Added .gitignore file for git.
[perl4caml.git] / examples / google.ml
index 2e8ca40..d6c3640 100644 (file)
@@ -1,7 +1,7 @@
 (* Example program which uses Net::Google to query Google.
  * You will need to have a Google API key in ~/.googlekey for this to work.
  * Copyright (C) 2003 Merjis Ltd.
- * $Id: google.ml,v 1.2 2003-10-15 16:51:12 rich Exp $
+ * $Id: google.ml,v 1.4 2003-12-11 17:41:52 rich Exp $
  *)
 
 open Printf
@@ -30,5 +30,5 @@ let () =
        printf "* %s\n  <URL:%s>\n\n" response#title response#url
     ) search#results;
 
-  (* Destroy the Perl interpreter. *)
-  Perl.destroy (Perl.current_interpreter ())
+  (* Perform a full collection - good way to find GC/allocation bugs. *)
+  Gc.full_major ()