Type : CREATION_INTERNE
The data (postal code) is directly integrated into the source code via the DATALINES statement.
| 1 | DATA ZIP_DET; |
| 2 | INPUT zipcode; |
| 3 | zip_city=zipcity(zipcode); |
| 4 | DATALINES; |
| 5 | 60607 |
| 6 | ; |
| 1 | PROC PRINT; |
| 2 | title "Output of ZIPCITY function usage in SAS"; |
| 3 | var zip_city; |
| 4 | |
| 5 | RUN; |
| 6 | QUIT; |