First Code·2 / 9

Hello, World!

~5 min read

Tradition demands your first program prints 'Hello, World!'. Here's how to do it in three popular languages:

print('Hello, World!')
console.log('Hello, World!');
<h1>Hello, World!</h1>

Try it yourself in the playground below. Edit the code and run it.

Interactive · code playground
Code
Output

Made with Emergent