Hi,
Im new to MEL, just started doing basic stuff. Why my code does not print anything? No, the scene is not empty.
string $sel[] = `select -all -hi`;
string $itm;
for ($itm in $sel) {
//string $type = nodeType($item);
//print ($type + " : " + $item + "
");
print "wtf?
";
};