view examples/helloworld.cc @ 18967:69658bd9952b

__add_default_menu__.m: Fix bug that findobj is missing HLIST
author Andreas Weber <andy.weber.aw@gmail.com>
date Tue, 29 Jul 2014 10:18:05 +0200
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 ();
}