scilab: remove debug stuff
This commit is contained in:
parent
d50620ddeb
commit
dd1128733f
2 changed files with 1 additions and 1 deletions
16
Examples/scilab/enum/example.c
Normal file
16
Examples/scilab/enum/example.c
Normal 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");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue