RosettaCodeData/Task/Hello-world-Line-printer/PHP/hello-world-line-printer-1.php

4 lines
56 B
PHP
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
<?php
file_put_contents('/dev/lp0', 'Hello world!');
?>