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