'#include#ardumidi.h' how to define in a program

hey i am new to arduino, in a code there is a line : #include#ardumidi.h
so how to define it?

sopnil567:
in a code there is a line : #include#ardumidi.h
so how to define it?

That does not look like a valid line of code. It should look more like:

#include "ardumidi.h"

That inserts the header (.h) file of the ardumidi library. You have to install the library first. Where did you get the code from?