Plugin guide: Difference between revisions

From SPEDAS Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Stub for page for the Plugin creation guide.
Stub for page for the Plugin creation guide.


<sourcecode>
<syntaxhighlight>
#include <stdio.h>
#include <stdio.h>


Line 8: Line 8:
   printf("%s\n","Hello World!");
   printf("%s\n","Hello World!");
}
}
<sourcecode/>
<syntaxhighlight/>

Revision as of 00:41, 11 February 2014

Stub for page for the Plugin creation guide.

<syntaxhighlight>

  1. include <stdio.h>

int main(int argc, int ** argv) {

  printf("%s\n","Hello World!");

} <syntaxhighlight/>