swig/Examples/php/sync/runme.php
2008-12-06 21:40:54 +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();
?>