view examples/myhello.c @ 18912:b316363e3ce5

maint: Remove deprecated function java_new.m * scripts/deprecated/java_new.m: Remove deprecated function.
author Rik <rik@octave.org>
date Sun, 13 Jul 2014 18:37:21 -0700
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);
}