You don't need hello world

It's very common when learning a new language for you to be presented with a tutorial teaching you how to write a hello world program in the given language. I'm here to tell you that you don't need to write hello world! you can in fact replace hello world! with whatever string takes your fancy.

The following code snippet is a typical example of what you might expect:

console.log('hello world!');
common first program

Please be creative, it's your first program after all:

console.log('good morning world!');
creative first program

As you can see from the snippet above, you don't need to conform to the hello world! trend. Be your own person.

Show Comments