Hello everyone!
I`m learning maya api now.
#include <maya/MSimple.h>
#include <maya/MIOStream.h>
DeclareSimpleCommand( helloWorld, “Autodesk”, “8.0”);
MStatus helloWorld::doIt( const MArgList& )
{
cout << Hello World
;
return MS::kSuccess;
}
cout << Hello World
;
Why I can`t see result in maya?
So I need your help!
Thanks!