Does boo have conditional expressions?
Python’s equivalent would be x = y if c else z
Does boo have conditional expressions?
Python’s equivalent would be x = y if c else z
I figured it out! you have to put () around the expression:
prevEnv = (currentEnv.Previous if currentEnv.Previous else environmentList.Last)