Creating a SAS data set using scripts in the editor window

Step 0) Open SAS

Step 1) Place SAS commands in the editor window.
For example, these commands load the womenpower data on the book's CD

data womenpower;
input name $ age company $ position $;
datalines;
Fiorina 45 Hewlett-Packard CEO
Miller 46 Citigroup CFO
Meekr 40 MorganStanley Dir
Lazarus 52 Ogilvy&Mather CEO
;;;;

Step 2) Submit the SAS commands

Step 3) Check the results