crayon-syntax-highlighter/util/sample/php.txt

11 lines
126 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
<?php
// A sample class
class Human {
$age = 0;
function birthday() {
$age++;
echo 'Happy Birthday!';
}
}
?>