swig/Examples/php/sync/runme.php
2009-04-11 16:46:47 +00:00

15 lines
188 B
PHP

<?
// Load module and PHP classes.
include("example.php");
echo "Got new object\n";
echo "Got string $s and value $x \n";
$s = new Sync();
echo "Got new object\n";
$s->printer();
?>