I needed to write a blog post to test my blog layout, so… here’s me saying hello in a few different languages!
Definitely not an excuse to try out the Code Block Pro plugin!
<?php
echo "Hello, world!"; // Hello, world!
PHPdef say_hello( hello: str = 'Hi' ) -> str:
return hello + ', world!'
print( say_hello( 'Hello' ) ) # Hello, world!
Pythonconsole.log('Hello, world!'); // Hello, world!
JavaScript