kylekatarnls/sbp

View on GitHub
examples/basic/main.sbp.php

Summary

Maintainability
A
0 mins
Test Coverage
<?

f triple($number)
    < $number * 3;

$score = 4;
$score **= triple();

echo $score; // Affiche 12

?>