Help for this page

Select Code to Download


  1. or download this
    # Makefile
    
    ...
    clean-all :       clean
                      rm -f libhelloworld.so
    
  2. or download this
    #include "EXTERN.h"
    #include "perl.h"
    ...
          CODE:
          printf ("Helloworld\n");
          boxing_print ("Helloworld");
    
  3. or download this
    package helloworld;
    
    ...
    
    
    1;
    
  4. or download this
    # Makefile
    
    ...
    
    clean-all :       clean
                      rm -f *.so test
    
  5. or download this
    #include "stdio.h"
    #include "string.h"
    ...
          printf ("\n");
          return;
    }
    
  6. or download this
    void boxing_print (char*);