This is a fun project to bring the Pearson Edexcel pseudocode to life! The interpreter is designed to execute pseudocode written in the style used in Pearson Edexcel IGCSE Computer Science course. It mostly follows the syntax and conventions outlined in the official subject specification.
- Supports basic data types: integers, real numbers, strings, booleans, and lists.
- Implements control structures:
- Selection: IF, ELSE
- Iteration: WHILE, FOR, REPEAT UNTIL, FOREACH
- Has built-in standard library functions:
- LENGTH
- RANDOM
- TYPE
The web-based interpreter can be accessed at https://edx-code.vercel.app/. You can write your pseudocode in the editor and transpile to Python to see the output. The interpreter is in progress...