<?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 Juletip #8 - Drawing a simple pyramid in SAS in SAS Community Nordic</title>
    <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-8-Drawing-a-simple-pyramid-in-SAS/m-p/704360#M327</link>
    <description>&lt;P&gt;Top down:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
j=24;
do i=0 to 24 by 2;
b=repeat('*',i);
c=floor((j-i)/2);
put +c b;
end;
run;

            *
           ***
          *****
         *******
        *********
       ***********
      *************
     ***************
    *****************
   *******************
  *********************
 ***********************
*************************
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bottom up:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
j=24;
do i=24 to 0 by -2;
b=repeat('*',i);
c=floor((j-i)/2);
put +c b;
end;
run;

*************************
 ***********************
  *********************
   *******************
    *****************
     ***************
      *************
       ***********
        *********
         *******
          *****
           ***
            *
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 08 Dec 2020 06:55:37 GMT</pubDate>
    <dc:creator>sdkhli</dc:creator>
    <dc:date>2020-12-08T06:55:37Z</dc:date>
    <item>
      <title>Juletip #8 - Drawing a simple pyramid in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-8-Drawing-a-simple-pyramid-in-SAS/m-p/704360#M327</link>
      <description>&lt;P&gt;Top down:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
j=24;
do i=0 to 24 by 2;
b=repeat('*',i);
c=floor((j-i)/2);
put +c b;
end;
run;

            *
           ***
          *****
         *******
        *********
       ***********
      *************
     ***************
    *****************
   *******************
  *********************
 ***********************
*************************
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Bottom up:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _null_;
j=24;
do i=24 to 0 by -2;
b=repeat('*',i);
c=floor((j-i)/2);
put +c b;
end;
run;

*************************
 ***********************
  *********************
   *******************
    *****************
     ***************
      *************
       ***********
        *********
         *******
          *****
           ***
            *
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 Dec 2020 06:55:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-8-Drawing-a-simple-pyramid-in-SAS/m-p/704360#M327</guid>
      <dc:creator>sdkhli</dc:creator>
      <dc:date>2020-12-08T06:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Juletip #8 - Drawing a simple pyramid in SAS</title>
      <link>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-8-Drawing-a-simple-pyramid-in-SAS/m-p/704587#M328</link>
      <description>&lt;P&gt;And don't forget this version of a SAS Christmas tree, drawn by the DATA step:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2011/12/16/a-sas-christmas-tree.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2011/12/16/a-sas-christmas-tree.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 22:56:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Community-Nordic/Juletip-8-Drawing-a-simple-pyramid-in-SAS/m-p/704587#M328</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2020-12-08T22:56:36Z</dc:date>
    </item>
  </channel>
</rss>

