view examples/myhello.c @ 18918:ed41db031752 stable

Added tag rc-3-8-2-2 for changeset 46df2c7b8f4d
author John W. Eaton <jwe@octave.org>
date Tue, 01 Jul 2014 04:48:55 -0400
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);
}