11 lines
194 B
PHP
11 lines
194 B
PHP
<?php
|
|
$author = "Bill Gates";
|
|
|
|
$text = "Measuring programming progress by lines of code is like
|
|
Measuring aircraft building progress by weight.
|
|
|
|
- $author.";
|
|
|
|
echo $text;
|
|
?>
|