view examples/helloworld.cc @ 19025:a66548dc07b0 stable release-3-8-2

Version 3.8.2 released. * configure.ac (OCTAVE_VERSION): Now 3.8.2. (OCTAVE_MINOR_VERSION): Now 2. (OCTAVE_RELEASE_DATE): Set to 2014-06-06.
author John W. Eaton <jwe@octave.org>
date Thu, 07 Aug 2014 11:41:28 -0400
parents 224e76250443
children
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 ();
}