Monkey1 to Monkey2

Hi, A quick list of things to consider when converting monkey1 code to monkey2… Strict mode not an option! All functions that return something must return something! In monkey1, you could omit return statements even in functions that returned non-void. Not so in monkey2 (although this isn’t actually implemented in the compiler yet..). Variables no … Continue reading Monkey1 to Monkey2