blob: e3008b8556111aaf7c9be4ad29c059078c3e86e2 [file] [log] [blame]
var subsystems = Simulink!SubSystem.all();
var children;
for (s in subsystems){
if (s.parent == null){
s.name.println("name: ");
children = s.children;
for (c in children)
{
("Found : " + c.name).println();
}
}
}
"Finished".println();