annotate examples/helloworld.cc @ 14348:95c43fc8dbe1
stable rc-3-6-1-0
3.6.1 release candidate 0
* configure.ac (AC_INIT): Version is now 3.6.1-rc0.
(OCTAVE_RELEASE_DATE): Now 2012-02-07.
* liboctave/Makefile.am: Bump liboctave revision version.
* src/Makefile.am: Bump liboctave revision version.
author |
John W. Eaton <jwe@octave.org> |
date |
Thu, 09 Feb 2012 11:25:04 -0500 |
parents |
db1f49eaba6b |
children |
be41c30bcb44 |
rev |
line source |
6572
|
1 #include <octave/oct.h> |
|
2 |
|
3 DEFUN_DLD (helloworld, args, nargout, |
|
4 "Hello World Help String") |
|
5 { |
|
6 int nargin = args.length (); |
12174
|
7 octave_stdout << "Hello World has " << nargin |
6572
|
8 << " input arguments and " |
|
9 << nargout << " output arguments.\n"; |
|
10 return octave_value_list (); |
|
11 } |