The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#include <stdio.h>
#include <stdlib.h>

int main (int argc, char **argv) {
    if (argc > 1) {
        printf("%s\n", argv[1]);
    }
    printf("hello <world>!\n");
    return 0;
}