view examples/helloworld.cc @ 14543:e47d929fde8f

process backslash string escapes in regexp pattern and regexprep replacement (bug #35911) * regexp.cc (do_regexp_string_escapes): New function. (octregexp, octregexprep): Process backslash string escapes in single-quoted pattern string. (octregexprep): Process backslash string escapes in single-quoted replacement string.
author John W. Eaton <jwe@octave.org>
date Tue, 10 Apr 2012 17:14:24 -0400
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 ();
}