This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CUR_DIR=${PWD} | |
RES_DIR=${PROJECT_DIR}/${PROJECT}/Resources | |
EX_DIR=${RES_DIR}/Exported | |
rm -rf ${EX_DIR}/AppData/ | |
cp -R ${RES_DIR}/AppData ${EX_DIR}/ | |
WRD=class | |
NEW=aaa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int *ip; // pointer to integers | |
double *dp; // pointer to doubles |
NewerOlder