presentations/highlight-js/test/markup/php/comments.txt

19 lines
245 B
Text

<?php
/**
* @param int $a
* @return bool
*/
function isEven($a) {
return ($a % 2) === 0;
}
/**
* TODO: Rely on isEven, but do not highlight bug.
*
* @param int $a
* @return bool
*/
function isOdd($a) {
return ($a % 2) === 1;
}