crayon-syntax-highlighter/util/sample/php.txt
2019-08-30 19:30:19 +02:00

11 lines
126 B
Plaintext

<?php
// A sample class
class Human {
$age = 0;
function birthday() {
$age++;
echo 'Happy Birthday!';
}
}
?>