Search notes:

SAS programming: character strings

/*
    In a macro statement, character strings need not
    be enclosed in quotation marks. 
*/

%let  text=The foo, the bar and the baz.;
%put &text;
Github repository about-SAS, path: /programming/character-strings.sas

See also

Single and double quotes
SAS Programming Language

Index