RS80 – SASHELP library is used (SAS)

SASHELP library is used (SAS)
SASHELP library is intended for tutorials and practicing. It should not be used in production code.

SASHELP library is used (SAS) DATA sashelp.mydata;
    SET sashelp.other;
    Age_Squared = Age * Age;
run;