Pseudocode Editor & Runner
Write Cambridge IGCSE pseudocode, run it right in your browser, and step through every line while you watch the variables change.
What is pseudocode?
Pseudocode is a plain-language way of writing out the logic of a program before you write real code. It uses structured keywords — IF, FOR, WHILE, PROCEDURE — so the steps are unambiguous, but it drops the fiddly syntax of a specific programming language. That makes it perfect for planning algorithms, studying for exams, and explaining ideas.
This editor understands the Cambridge IGCSE and A-Level pseudocode dialect and runs it entirely in your browser — no sign-up, no installation. Press Run to see the output, then use the player to step through one line at a time and watch each variable update.
See these algorithms animated
Pseudocode FAQ
What is pseudocode?
Pseudocode is a plain-language way of describing the steps of an algorithm, using structured keywords like IF, FOR and WHILE without the strict syntax of a real programming language. It lets you plan and communicate logic before writing code.
Can you actually run pseudocode?
Pseudocode is not normally executable, but this editor runs a well-defined dialect (Cambridge IGCSE / A-Level pseudocode) entirely in your browser so you can see the output and step through it line by line.
Which pseudocode does this editor use?
It follows the Cambridge IGCSE and A-Level pseudocode conventions — DECLARE, the ← assignment arrow, OUTPUT, INPUT, IF/ELSE/ENDIF, FOR/NEXT, WHILE/ENDWHILE, REPEAT/UNTIL, arrays, and PROCEDURE/FUNCTION.
Is the pseudocode editor free?
Yes. The pseudocode editor and runner are completely free, run in your browser, and need no sign-up or installation.