export const lessons = [ { id: 'lesson1', title: '1. Introduction to Python', difficulty: 'easy', content: `

Let's learn some Python..

We'll start with what's called a "Hello World" program to make sure everythings working.

In Python, this is done with the print function.

  1. In the code editor below, type print("Hello World")
  2. Click the "Run" button to execute your code
  3. You should see "Hello World" printed in the output area
`, doneCondition: (consoleText) => consoleText.includes("Hello World") }, { id: 'lesson2', title: 'Using Interrupts', difficulty: 'medium', content: `

Interrupts allow your code to react to pin changes asynchronously.

More content here...

` } ];