pseudo-9608

An interpreter for 9608 pseudocode


Keywords
interpreter, programming-language, python
License
MIT
Install
pip install pseudo-9608==0.5.0a0

Documentation

An interpreter for 9608 pseudocode

Pseudo is an interpreter for 9608 pseudocode, a pseudocode syntax used in Cambridge International AS & A Level Computer Science.

Setup

pip install pseudo-9608

Usage

Running psuedocode on a file

import pseudocode

pseudocode.runFile('myfile.pseudo')

Running psuedocode on a string

import pseudocode

code = """
OUTPUT "Hello World!"
"""

pseudocode.run(code)

Chapters

This project is also an attempt to write a programming book in a new style. Each chapter of this book is written as a pull request.