Content deleted Content added
m →Examples of language constructs: Plus some more minor cleanup |
|||
Line 9:
In [[PHP]], for example, <code>print</code> is a language construct. According to [http://www.php.net/manual/en/function.print.php]
<source lang="php">
<?php
print 'Hello world';
?>
Line 17:
<source lang="php">
<?php
print('Hello world');
?>
|