Suppose I have code like this:
class Class1:
var pie
class Class2:
func blah():
return Class1.new()
This works fine and Class2 can refer to Class1. However, the following doesn't work:
class Class1:
func blah():
return Class2.new()
class Class2:
func blah():
return Class1.new()
because Class2 has not been declared when Class1 refers to it. What is a simple way to get them to be able to refer to each other?