view examples/myhello.c @ 19652:75a671fcdd73 stable

* Faddeeva.cc: Also use gnulib::log.
author John W. Eaton <jwe@octave.org>
date Fri, 23 Jan 2015 15:21:25 -0500
parents be41c30bcb44
children
line wrap: on
line source

#include "mex.h"

void
mexFunction (int nlhs, mxArray *plhs[],
             int nrhs, const mxArray *prhs[])
{
  mexPrintf ("Hello, World!\n");

  mexPrintf ("I have %d inputs and %d outputs\n", nrhs, nlhs);
}