Marist-CMPT331-TOPL / adder

Adder is a small but usable subset of the Python language. It is named for the Blackadder comedy series, much as the Python language is named for Monty Python.
MIT License
0 stars 2 forks source link

If Statement #3

Open rvarca22 opened 1 year ago

rvarca22 commented 1 year ago

Basic if and if-else to start with. Let's leave elifs for a later issue.

Note: Depends on parser being able to recognize a suite (i.e., indented block of one or more statements). Depends on expressions.