view examples/helloworld.cc @ 18924:f1e21a495e20

pareto.m: Use same color for left/right axes and for bar/line. pareto.m: Copy left-axis color of plotyy to right-axis. Use colororder from first axis to set color of line object.
author Rik <rik@octave.org>
date Thu, 03 Jul 2014 09:09:48 -0700
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 ();
}