Plugin guide: Difference between revisions

From SPEDAS Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 9: Line 9:
}
}


<syntaxhighlight/>
</syntaxhighlight>

Revision as of 00:44, 11 February 2014

Stub for page for the Plugin creation guide.

<syntaxhighlight lang=c>

  1. include <stdio.h>

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

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

}

</syntaxhighlight>