view examples/helloworld.cc @ 13512:bc87c8da3efb

< and > get replaced, so it is no longer possible to use HTML tags in the IRC client.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Mon, 18 Jul 2011 18:29:21 +0200
parents db1f49eaba6b
children be41c30bcb44
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 ();
}