view examples/myhello.c @ 18543:0bfbfb05b158 stable

imwrite.m: simplify test blocks by make use of shared %!function.
author Carnë Draug <carandraug@octave.org>
date Tue, 04 Mar 2014 19:44:19 +0000
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);
}