code
#include <stdio.h>
 
int main() {
 puts("Okay, time for a post using the all new Code feather I wrote.\r\n");
 main_part_of_post();
 // Well...
 puts("Yes, you can compile this post with a C compiler, too! :)\r\n");
 // Okay.
 return 0;
}
 
void main_part_of_post() {
 puts("So I made a new feather called Code. It's available at...");
 char *link = "http://chyrp.net/extend/view/code/";
 puts(link);
 puts("\r\nI invite you to try it out.");
}