plaintext.php 139 B

12345678910
  1. <?php
  2. //
  3. // 6. Plaintext Test
  4. //
  5. function main() {
  6. header('Content-Type: text/plain; charset=utf-8');
  7. echo 'Hello, World!';
  8. }
  9. main();