view examples/helloworld.cc @ 17815:dbf67e6c256a

*de_DE.ts: fixed typo in german gui translation
author Torsten <ttl@justmail.de>
date Thu, 31 Oct 2013 20:56:37 +0100
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 ();
}