view examples/helloworld.cc @ 9919:a463aa0aa0ab

remove lingering Makefile.am options for deleted file conf.texi
author Rik <rdrider0-list@yahoo.com>
date Fri, 04 Dec 2009 15:33:51 -0800 (2009-12-04)
parents 4295d634797d
children db1f49eaba6b
line wrap: on
line source
#include <octave/oct.h>

DEFUN_DLD (helloworld, args, nargout,
  "Hello World Help String")
{
  int nargin = args.length ();
  octave_stdout << "Hello World has " << nargin 
        << " input arguments and "
        << nargout << " output arguments.\n";
  return octave_value_list ();
}