/* Use %STR to mask the constant, and use a % sign to mark */ /* the unmatched single quotation mark. */ %let whose=%str(John%'s); /* You don't need to mask the macro reference, because it was */ /* masked in the %LET statement, and remains masked. */ %put *** This coat is &whose ***;
***This coat is John's ***