view examples/myhello.c @ 18249:8193ef6d07fc stable

pt_BR.ts: Update Brazilian Portugese translation. * pt_BR.ts: Update Brazilian Portugese translation.
author Felipe G. Nievinski <fgnievinski@gmail.com>
date Thu, 09 Jan 2014 07:58:09 -0800
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);
}