# test_pbc.php

<?php

  function test_pbc(){

       print "hello parrot";

  }

?>



if compile test_pbc.php to test_pbc.pbc then how use this pbc for perl.



#!/usr/bin/perl

use test_pbc; # ?

test_pbc();   # ?

Reply via email to