xref: /PHP-5.5/tests/lang/001.phpt (revision d94136fc)
1--TEST--
2Simple If condition test
3--FILE--
4<?php $a=1; if($a>0) { echo "Yes"; } ?>
5--EXPECT--
6Yes
7