X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=examples%2Floadpage.ml;h=dfb4afd12aefa6b562727634b4fe1baa687221a7;hb=1a03f5caec9e996f5929dbe34cf85c54f7ee4893;hp=4007f8d377d6bfb737fd66a6ebf02456874465ac;hpb=9e88eacb7d2a8883900fba0c8abedc26c7510d98;p=perl4caml.git diff --git a/examples/loadpage.ml b/examples/loadpage.ml index 4007f8d..dfb4afd 100644 --- a/examples/loadpage.ml +++ b/examples/loadpage.ml @@ -1,7 +1,7 @@ (* Example program which uses LWP::UserAgent and HTML::TreeBuilder to * download an HTTP page and parse it. * Copyright (C) 2003 Merjis Ltd. - * $Id: loadpage.ml,v 1.3 2003-10-15 16:51:12 rich Exp $ + * $Id: loadpage.ml,v 1.4 2003-10-16 11:03:52 rich Exp $ *) open Printf @@ -57,4 +57,7 @@ let () = print tree; (* Destroy the Perl interpreter. *) - Perl.destroy (Perl.current_interpreter ()) + Perl.destroy (Perl.current_interpreter ()); + + (* Perform a full collection - good way to find GC/allocation bugs. *) + Gc.full_major ()