<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: anup-maharjan</title>
    <description>The latest articles on DEV Community by anup-maharjan (@anupmaharjan).</description>
    <link>https://dev.to/anupmaharjan</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F223002%2Fe7f9e555-4f1c-4d28-a2fb-c4d8ddada659.jpeg</url>
      <title>DEV Community: anup-maharjan</title>
      <link>https://dev.to/anupmaharjan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/anupmaharjan"/>
    <language>en</language>
    <item>
      <title>QBASIC Modular Programming</title>
      <dc:creator>anup-maharjan</dc:creator>
      <pubDate>Wed, 04 Sep 2019 08:40:51 +0000</pubDate>
      <link>https://dev.to/anupmaharjan/qbasic-modular-programming-1lo5</link>
      <guid>https://dev.to/anupmaharjan/qbasic-modular-programming-1lo5</guid>
      <description>&lt;p&gt;This code &lt;br&gt;
&lt;a href="https://repl.it/@computer2anup/ReverseName"&gt;https://repl.it/@computer2anup/ReverseName&lt;/a&gt;&lt;br&gt;
is same like &lt;br&gt;
DECLARE FUNCTION reverse$ (W$)&lt;br&gt;
CLS&lt;br&gt;
    INPUT "Enter a name "; W$&lt;br&gt;
PRINT " Reverse name = ";  reverse$ (W$)&lt;br&gt;
END&lt;/p&gt;

&lt;p&gt;FUNCTION reverse$ (W$)&lt;/p&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;FOR P = 1 TO LEN(W$)
    C$ = MID$(W$,P,1)
    R$ = C$ + R$
NEXT P

reverse$ = R$
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;END FUNCTION&lt;/p&gt;

&lt;p&gt;But still it lags, why?&lt;/p&gt;

</description>
      <category>qbasic</category>
    </item>
  </channel>
</rss>
