view examples/myhello.c @ 17961:774409d18794

* be_by.ts: new translations by Mihas and updated to new strings
author Torsten <ttl@justmail.de>
date Tue, 19 Nov 2013 21:40:04 +0100
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);
}