Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Php
<?='Hello World'?>

Using the short echo syntax, a non-deprecated short tag expression.
echo "Hello World" . PHP_EOL;

Use PHP_EOL instead of \n
<?php echo 'Hello World'; ?>

Characters outside of execution blocks are immediately echoed.
with Ada.Text_IO;
use Ada.Text_IO;
Put_Line ("Hello World!");

New implementation...
< >
programming-idioms.org