I noticed how the association class was automatically created simultanously when the classes which the association class depends on were added. That is of course how it should be. The problem with that, however, is that I'd normally go about like this when adding things like integers in the "new debugger":
action:
Class.allinstances->at0(0) .attribute:=number
But since the this class isn't of a multiciply and solely created because of its connections to the other created classes, the at0 operator does not work.
How should I go about instead? And generally, what should you look out for when programing in MDriven's "new debugger" for association classes?