view examples/helloworld.cc @ 17654:d7da5afcdb22 classdef

* libinterp/parse-tree/oct-parse.in.yy: Mark <tok_type> non-destructible.
author Michael Goffioul <michael.goffioul@gmail.com>
date Mon, 14 Oct 2013 16:15:13 -0400
parents be41c30bcb44
children 224e76250443
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 ();
}