scilab: remove debug stuff

This commit is contained in:
Simon Marchetto 2014-07-03 12:15:35 +02:00
commit dd1128733f
2 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,16 @@
/* File : example.c */
#include "example.h"
#include <stdio.h>
void enum_test(color c) {
if (c == RED) {
printf("color = RED\n");
} else if (c == BLUE) {
printf("color = BLUE\n");
} else if (c == GREEN) {
printf("color = GREEN\n");
} else {
printf("color = Unknown color!\n");
}
}