- Before you build the project, change the contents of
program.pli to:
/* Micro Focus Open PL/I Console Application */
program: proc options (main);
dcl sub entry;
dcl a1 char(14);
put skip list ('Hello world - main' );
call sub();
put skip;
get list (a1);
end program;
- On the menu bar click
Tools >
Options.
- Expand
Projects.
- Select
Build and Run.
- From the
MSBuild project build output verbosity dropdown list, select
Normal.
- Click
OK.
- On the menu bar, click
Build.
- Click
Build Solution.
Note: If while going through the tutorial, you have already built the project, then you need to click
Rebuild Solution instead of
Build Solution.
If you inspect the Output window, you will notice that
program.pli has been compiled with the
-margins 2,72 option but
sub.pli has not and the build is clean.