# HG changeset patch # User jwe # Date 923617206 0 # Node ID 8c5ad0b497421c00fea7f81fb0caa2374687ebfe # Parent 02259d65461a3d3c40af744af482fbf55995cb67 [project @ 1999-04-09 00:20:06 by jwe] diff --git a/examples/hello.cc b/examples/hello.cc --- a/examples/hello.cc +++ b/examples/hello.cc @@ -84,13 +84,13 @@ // The octave_value_list class is a zero-based array of octave_value // objects. The declaration for the octave_value class is in the - // file pt-const.h. The print() method will send its output to + // file ov.h. The print() method will send its output to // octave_stdout, so it will also end up going through the pager. for (int i = 0; i < nargin; i++) { octave_value tmp = args (i); - tmp.print (); + tmp.print (octave_stdout); retval (nargin-i-1) = tmp; }