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

Interpret unary operations #43

Open Tientuine opened 1 year ago

Tientuine commented 1 year ago

@Marist-CMPT331-TOPL/students Depends on #42

Add cases to valueOfUop for each of the valid combinations of unary operators and operand. Note: Any combinations not covered by what you implement will simply be undefined.

Note: The implementation of not here will serve as an initial implementation. Time permitting, we may tweak this later to make it more faithful to how Python does things, where we determine the "truthiness" of the operand and then return an appropriate Boolean.