<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>How to print Star pattern</title><link>https://community.appian.com/discussions/f/general/27364/how-to-print-star-pattern</link><description>Hello All, 
 how to print this pattern 
 * 
 * * 
 * * * 
 * * * * 
 * * * * *</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: How to print Star pattern</title><link>https://community.appian.com/thread/107233?ContentTypeID=1</link><pubDate>Tue, 31 Jan 2023 10:26:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b5723ffb-743d-4299-a5ea-1498d42a277d</guid><dc:creator>Harshit Bumb (Appyzie)</dc:creator><description>&lt;p&gt;There are already a lot of similar threads about this topic. From next time, please try to search in the existing discussions. You might find something more useful&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!forEach(
  items: enumerate(5),
  expression: joinarray(repeat(fv!index,&amp;quot;*&amp;quot;),&amp;quot;&amp;quot;)&amp;amp;char(10)
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to print Star pattern</title><link>https://community.appian.com/thread/107232?ContentTypeID=1</link><pubDate>Tue, 31 Jan 2023 10:26:12 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:534ef1b0-5884-478b-bff9-8276fc9b3472</guid><dc:creator>Stefan Helzle</dc:creator><description>&lt;p&gt;What is your use case? Is this a test? I suggest to study the list of Appian functions here&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/22.4/Appian_Functions.html"&gt;https://docs.appian.com/suite/help/22.4/Appian_Functions.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Below some code:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!forEach(
  items: enumerate(5),
  expression: rept(&amp;quot;*&amp;quot;, fv!index)
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>