In Maya, with Python, I can write to the Command Response Window (I think it's called that - the single line window at the bottom right of the screen):
import sys
def console_it(s):
sys.stdout.write(s)
console_it("Hello world")
What's the equivalent using MEL?
The following just prints to the Script editor History Window - which is not what I'm after.
global proc console_it(string $s)
{
print($s);
}