Mercurial > hg > octave-nkf
view examples/helloworld.cc @ 17200:fe7cb5bb4388
jit.tst: Add code to save/restore JIT state. Only test if HAVE_LLVM is true.
* test/jit.tst: Add code to save/restore JIT state. Only test if HAVE_LLVM
is true.
author | Rik <rik@octave.org> |
---|---|
date | Wed, 07 Aug 2013 14:30:05 -0700 |
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 (); }