BEGINNER PATH
5 modules · 20 lessons · hands-on from lesson one
Your very first steps into programming. You will learn what code actually is, run your first program in the browser, and discover how comments keep code readable — all with short, friendly examples you can edit yourself.
Code is a set of written instructions a computer follows step by step. Like a recipe, it tells the machine exactly what to do and in what order. Below is a tiny example — a program that greets the world.
// This program prints a greeting let greeting = "Hello, world!" print(greeting) print("Nice to meet you")
Edit the code on the left, then press Run Code. Try changing the text inside the quotes!
Press Run Code to see your program's output here…