Language construct: Difference between revisions

Content deleted Content added
Line 7:
 
==Examples of language constructs==
In [[PHP]], for example, ''print'' is not actually a real function (it is a language construct in php) so you are not required to use parentheses with its argument list.
 
<source lang=php><?
print 'Hello world';