<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: put statement and line break using / in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859334#M339526</link>
    <description>&lt;P&gt;Release: 3.81 (Single User)&lt;BR /&gt;Build date: Aug 4, 2020 11:39:11 AM&lt;BR /&gt;SAS release: 9.04.01M5P09132017&lt;BR /&gt;SAS platform: X64_10PRO WIN&lt;/P&gt;</description>
    <pubDate>Fri, 17 Feb 2023 09:25:48 GMT</pubDate>
    <dc:creator>xxformat_com</dc:creator>
    <dc:date>2023-02-17T09:25:48Z</dc:date>
    <item>
      <title>put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859135#M339462</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
    *file log;
    put 'data one;';
    put ' set sashelp.class;';
    put 'run;'///;
    put 'proc print data=one;';
    put 'run;';
run;

data _null_;
    *file log;
    put 'data one;' / ' set sashelp.class;' / 'run;' //// 'proc print data=one;' / 'run;';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I used to use two slashes to create an empty line (one per line break) years ago.&lt;/P&gt;
&lt;P&gt;Nowadays I need four slashes to create it (or use an additional put statement).&lt;/P&gt;
&lt;P&gt;I don't understand why.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 08:45:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859135#M339462</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2023-02-16T08:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859167#M339474</link>
      <description>&lt;P&gt;Thats odd, can't think of anything directly unless you had a long line which split, or some sort of special character or break.&amp;nbsp; Cant find a system option for it.&amp;nbsp; When I do:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
  put 'line 1' //;
  put 'line 2';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I get:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;line 1  &amp;lt;-
&amp;lt;-
&amp;lt;-
line 2&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The reason being is that / moves the cursor to the first char of the nest row, as does put.&amp;nbsp; So print line 1, move to next (/), move to next (/), move to next (put), print line 2.&amp;nbsp; So two / should effectively create two blank rows.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 11:32:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859167#M339474</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2023-02-16T11:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859209#M339483</link>
      <description>&lt;P&gt;Probably your other program that required two slashes was also using a trailing&amp;nbsp;@ on PUT statements.&lt;/P&gt;
&lt;PRE&gt;2356  data _null_;
2357    file test;
2358    put 'line one' @ ;
2359    put // @;
2360    put 'line three';
2361    put /;
2362    put 'line six';
2363  run;

NOTE: The file TEST is:
      (system-specific pathname),
      (system-specific file attributes)

NOTE: 6 records were written to the file (system-specific pathname).
      The minimum record length was 0.
      The maximum record length was 10.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds


2364
2365  data _null_;
2366    infile test;
2367    input;
2368    list;
2369  run;

NOTE: The infile TEST is:
      (system-specific pathname),
      (system-specific file attributes)

RULE:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0
1         line one 8
2          0
3         line three 10
4          0
5          0
6         line six 8
NOTE: 6 records were read from the infile (system-specific pathname).
      The minimum record length was 0.
      The maximum record length was 10.
NOTE: DATA statement used (Total process time):
      real time           0.00 seconds
      cpu time            0.00 seconds
&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Feb 2023 14:58:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859209#M339483</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-02-16T14:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859222#M339486</link>
      <description>&lt;P&gt;Which version SAS and environment?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using SAS 9.4.4 in Display Manager when I run (or to File Log)&lt;/P&gt;
&lt;PRE&gt;data _null_;
    file print;
    put 'data one;' / ' set sashelp.class;' / 'run;' // 'proc print data=one;' / 'run;';
run;&lt;/PRE&gt;
&lt;P&gt;result is&lt;/P&gt;
&lt;PRE&gt;data one;                                                                                         
 set sashelp.class;                                                                               
run;                                                                                              
                                                                                                  
proc print data=one;                                                                              
run;&lt;/PRE&gt;
&lt;P&gt;and using&amp;nbsp; //// looks like&lt;/P&gt;
&lt;PRE&gt;data one;
 set sashelp.class;
run;



proc print data=one;
run;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 16:04:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859222#M339486</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-02-16T16:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859334#M339526</link>
      <description>&lt;P&gt;Release: 3.81 (Single User)&lt;BR /&gt;Build date: Aug 4, 2020 11:39:11 AM&lt;BR /&gt;SAS release: 9.04.01M5P09132017&lt;BR /&gt;SAS platform: X64_10PRO WIN&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 09:25:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859334#M339526</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2023-02-17T09:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859335#M339527</link>
      <description>&lt;P&gt;It's nice to know that the feature has not changed. It is an installation specific issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The default value of&amp;nbsp; the formchar and formdlm options have always been a mess in my installation. I've never been able to fix the issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;FORMCHAR=‚ƒ„…†‡ˆ‰Š‹Œ+=|-/\&amp;lt;&amp;gt;*&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Formdlim is equal to a special non printable character by me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using the right values doesn't help in this case as I'm not ouputted a table&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options formchar="|----|+|---+=|-/\&amp;lt;&amp;gt;*" formdlim=' ';&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But could it be something else in this direction I should look into?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 11:48:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859335#M339527</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2023-02-17T11:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859354#M339535</link>
      <description>&lt;P&gt;I've tried it with SAS OnDemand but get the same issue.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sasondemand.JPG" style="width: 953px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80495iC49FAB52C3F8C309/image-size/large?v=v2&amp;amp;px=999" role="button" title="sasondemand.JPG" alt="sasondemand.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 12:02:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859354#M339535</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2023-02-17T12:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859472#M339566</link>
      <description>&lt;P&gt;See what this does:&lt;/P&gt;
&lt;PRE&gt;data _null_;
    file print n=6;
    put 'data one;' / ' set sashelp.class;' / 'run;' #5 'proc print data=one;' / 'run;';
run;&lt;/PRE&gt;
&lt;P&gt;This is using an explicit line number, the #5 to write the output. The N= option on the File statement sets a number of lines available for output control, so has to be large enough to specify the line.&lt;/P&gt;
&lt;P&gt;I do realize that your use case is likely more complex but if the # solution works then you have one. I spent some time working with this in the days of line printer output and placing 10 tables on a single sheet of paper starting in different line/column positions.&lt;/P&gt;
&lt;P&gt;It would be less confusing for the above example to use:&lt;/P&gt;
&lt;PRE&gt;data _null_;
    file print n=6;
    put 'data one;' #2 ' set sashelp.class;' #3 'run;' #5 'proc print data=one;' #6 'run;';
run;
&lt;/PRE&gt;
&lt;P&gt;Or depending on just how much text you are playing with create a LONG variable and separate values with the OS line separator characters of choice.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think the Formchar has any impact and the string should be looked at with other FONTS, like the SASMONOSPACE.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Feb 2023 21:10:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859472#M339566</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-02-17T21:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859500#M339570</link>
      <description>&lt;P&gt;Are you talking about how the LOG looks in the new interfaces like SAS/Studio?&lt;/P&gt;
&lt;P&gt;Or are you writing to an actual FILE?&amp;nbsp; If to a file then how did you LOOK at the file?&lt;/P&gt;</description>
      <pubDate>Sat, 18 Feb 2023 01:48:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859500#M339570</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-02-18T01:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859540#M339582</link>
      <description>&lt;P&gt;First of all, thank you to everyone for the time and energy trying to figure things out.&lt;/P&gt;
&lt;P&gt;Thanks Ballard for the explanations of n= and #.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried both examples with file print as well as with file log and with file pointing to permanent file.&lt;/P&gt;
&lt;P&gt;RESULTS tab &amp;gt; does not create the line (could be an HTML thing)&lt;/P&gt;
&lt;P&gt;LOG &amp;gt; work for the first example but not the second one&lt;/P&gt;
&lt;P&gt;External file &amp;gt; works with both examples&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Example 1&lt;/H2&gt;
&lt;H3&gt;1.1 with file print (does not work)&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="code.JPG" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80553i3892729A1742A070/image-size/large?v=v2&amp;amp;px=999" role="button" title="code.JPG" alt="code.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="output.JPG" style="width: 631px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80554iA7259EF82C078184/image-size/large?v=v2&amp;amp;px=999" role="button" title="output.JPG" alt="output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H3&gt;1.2 with file log (works as expected)&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2output.JPG" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80556iFFB266FA983B9600/image-size/large?v=v2&amp;amp;px=999" role="button" title="2output.JPG" alt="2output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;H3&gt;1.3 with file test&amp;nbsp;(works as expected)&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="5code.JPG" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80561iFD7E86C09F1C772F/image-size/large?v=v2&amp;amp;px=999" role="button" title="5code.JPG" alt="5code.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="5output.JPG" style="width: 260px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80562iF59C9A46F9478200/image-size/large?v=v2&amp;amp;px=999" role="button" title="5output.JPG" alt="5output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2&gt;Example 2&lt;/H2&gt;
&lt;H3&gt;2.1 with file print (does not work as expected)&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3code.JPG" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80557i08CCA63ECDF9711A/image-size/large?v=v2&amp;amp;px=999" role="button" title="3code.JPG" alt="3code.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3output.JPG" style="width: 622px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80558i1D7B9E33E841BAC1/image-size/large?v=v2&amp;amp;px=999" role="button" title="3output.JPG" alt="3output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;2.2 with file log&amp;nbsp;&lt;STRONG&gt;(does not work as expected)&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="4output.JPG" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80560i75C7758D82391252/image-size/large?v=v2&amp;amp;px=999" role="button" title="4output.JPG" alt="4output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3&gt;2.3 with file test&amp;nbsp;(works as expected)&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6code.JPG" style="width: 985px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80564i0204220B15259850/image-size/large?v=v2&amp;amp;px=999" role="button" title="6code.JPG" alt="6code.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="6output.JPG" style="width: 276px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80565i87B042B1ADFCCF2D/image-size/large?v=v2&amp;amp;px=999" role="button" title="6output.JPG" alt="6output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Feb 2023 17:01:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859540#M339582</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2023-02-18T17:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859543#M339583</link>
      <description>&lt;P&gt;I was looking in the log. But you're right. I didn't notice it. But it looks ok in a text file.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="code.JPG" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80567iCC53ED88DF4AA045/image-size/large?v=v2&amp;amp;px=999" role="button" title="code.JPG" alt="code.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="output.JPG" style="width: 263px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80568i1759E5A21D9E3538/image-size/large?v=v2&amp;amp;px=999" role="button" title="output.JPG" alt="output.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Feb 2023 17:05:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859543#M339583</guid>
      <dc:creator>xxformat_com</dc:creator>
      <dc:date>2023-02-18T17:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859544#M339584</link>
      <description>&lt;P&gt;So this issue is NOT with the SAS code.&lt;/P&gt;
&lt;P&gt;The issue is with how SAS/Studio is showing you the output.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Feb 2023 17:08:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859544#M339584</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-02-18T17:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: put statement and line break using /</title>
      <link>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859546#M339585</link>
      <description>&lt;P&gt;I just put it into the class of things getting messed up by no longer using simple text file.&amp;nbsp; Just like how ODS eats leading spaces in PROC PRINT output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
  put 'data one;*nothing;' / ' set sashelp.class;' / 'run;' // 'proc print data=one;' / 'run;';
  put 'data one;*space;' / ' set sashelp.class;' / 'run;' /' '/ 'proc print data=one;' / 'run;';
  put 'data one;*non-breaking space;' / ' set sashelp.class;' / 'run;' /'A0'x/ 'proc print data=one;' / 'run;';
  put 'data one;*null byte;' / ' set sashelp.class;' / 'run;' /'00'x/ 'proc print data=one;' / 'run;';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1676740593258.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/80569i97DC456893C1B70A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Tom_0-1676740593258.png" alt="Tom_0-1676740593258.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Feb 2023 17:16:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/put-statement-and-line-break-using/m-p/859546#M339585</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-02-18T17:16:45Z</dc:date>
    </item>
  </channel>
</rss>

