Existing IML programs that were developed for PROC IML may require modification to run properly under IMLPlus. You should be aware of the following items when porting a program from PROC IML to IMLPlus:
Note: As of IML Studio 12.3, IMLPlus fully supports the following SAS global statements as native IMLPlus statements: FILENAME, FOOTNOTE, LIBNAME, ODS, OPTIONS, TITLE.
x = { ONE TWO 3 };
while IMLPlus requires you to write
x = { ONE TWO "3" };
or preferably
x = { "ONE" "TWO" "3" };
start Test1;
print "Test1";
finish;
alias Test() "Test1";
run Test;
start Test2;
print "Test2";
finish;
alias Test() "Test2";
run Test;