It's Just A Function

Hello World!

Learning to code can be intimidating. It certainly took me a while, but now I've been doing it for decades.

There is much to learn about software engineering, but here's the simplest thing to know. You need to get good at writing functions. So let's write some together.

Tradition dictates that we start with Hello World. So, let's start there. Here's my hello world in Python and another one in JavaScript.

My challenge for you today: write hello world in one or more languages.

def hello():
    print("Hello World")
function hello() {
  console.log('Hello World');
}

#javascript #python