git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
29 lines
898 B
Matlab
29 lines
898 B
Matlab
# file: runme.m
|
|
|
|
example
|
|
|
|
printf("ICONST = %i (should be 42)\n", example.ICONST);
|
|
printf("FCONST = %f (should be 2.1828)\n", example.FCONST);
|
|
printf("CCONST = %s (should be 'x')\n", example.CCONST);
|
|
printf("CCONST2 = %s (this should be on a new line)\n", example.CCONST2);
|
|
printf("SCONST = %s (should be 'Hello World')\n", example.SCONST);
|
|
printf("SCONST2 = %s (should be '\"Hello World\"')\n", example.SCONST2);
|
|
printf("EXPR = %f (should be 48.5484)\n", example.EXPR);
|
|
printf("iconst = %i (should be 37)\n", example.iconst);
|
|
printf("fconst = %f (should be 3.14)\n", example.fconst);
|
|
|
|
try
|
|
printf("EXTERN = %s (Arg! This shouldn't printf(anything)\n", example.EXTERN);
|
|
catch
|
|
printf("EXTERN isn't defined (good)\n");
|
|
end_try_catch
|
|
|
|
try
|
|
printf("FOO = %i (Arg! This shouldn't printf(anything)\n", example.FOO);
|
|
catch
|
|
printf("FOO isn't defined (good)\n");
|
|
end_try_catch
|
|
|
|
|
|
|
|
|