summaryrefslogtreecommitdiff
path: root/tests/simple/simple.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/simple/simple.php')
-rw-r--r--tests/simple/simple.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/simple/simple.php b/tests/simple/simple.php
index 6f70a7a..af9a2a2 100644
--- a/tests/simple/simple.php
+++ b/tests/simple/simple.php
@@ -18,11 +18,16 @@ class MyClass {
}
}
+$g1 = 123;
+$g2 = "abc";
+
$result = my_plus(new MyClass(), array(), new MyClass(), $myvar, "blabla", new XXX());
echo("myvar = $myvar\n");
echo("resultaat: $result\n");
-print_r($result);
+echo("g1: $g1\n");
+echo("g2: $g2\n");
+echo("g3: $g3\n");