view examples/myhello.c @ 18967:69658bd9952b

__add_default_menu__.m: Fix bug that findobj is missing HLIST
author Andreas Weber <andy.weber.aw@gmail.com>
date Tue, 29 Jul 2014 10:18:05 +0200
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);
}