Plugin guide: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Stub for page for the Plugin creation guide.") |
No edit summary |
||
Line 1: | Line 1: | ||
Stub for page for the Plugin creation guide. | Stub for page for the Plugin creation guide. | ||
<sourcecode> | |||
#include <stdio.h> | |||
int main(int argc, int ** argv) | |||
{ | |||
printf("%s\n","Hello World!"); | |||
} | |||
<sourcecode/> |
Revision as of 00:40, 11 February 2014
Stub for page for the Plugin creation guide.
<sourcecode>
- include <stdio.h>
int main(int argc, int ** argv) {
printf("%s\n","Hello World!");
} <sourcecode/>