There is a big difference between put and %put in SAS. The latter refers ro the context of SAS macro language - In this case is just a simple data step trying to write something to the log so in this case the correct statement is put "Hello, World!" - single/double quotes is irrelevant in this case.
There is a big difference between
put
and%put
in SAS. The latter refers ro the context of SAS macro language - In this case is just a simple data step trying to write something to the log so in this case the correct statement isput "Hello, World!"
- single/double quotes is irrelevant in this case.