Dark theme

If you managed to get the code running, great! You're a coder! It's a tradition in coding to start with "hello world" - and it's a useful tradition: this is the simplest code that shows that your system is running and you can get an output (information from your program to the wider computer or world).

If you didn't manage it, don't worry! Code has to be super-accurate: everything has to be exactly right - capitals and punctuation. If stuff doesn't work, make sure everything is typed exactly as suggested and try again:

print("hello world")

We call the finding of problems in code debugging and errors bugs. If stuff doesn't work, don't worry - it doesn't mean you're a bad coder, it means you're a human being! No one, and we mean NO ONE can continually type perfect code - humans just can't do it. 80% of coding is finding bugs!

Even if your code ran properly, try adding an error - put a capital "P" on print or remove one of the double-quote marks. See how the system responds in the console. We'll see some error messages later, but see if you can work out some of what the system is saying when it spots a problem - reading these messages is a major part of being a coder!

Right, let's get on with writing some code!

[Home > Part 1 > Next]