<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mojo Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/mojo/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/mojo/</link>
	<description>Code Solution</description>
	<lastBuildDate>Sat, 28 Jun 2025 17:33:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>Mojo Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/mojo/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Mojo Syntax Guide in Hindi – Variables, Constants, Types Explained</title>
		<link>https://codeplaners.com/mojo-syntax-variables-constants-hindi/</link>
					<comments>https://codeplaners.com/mojo-syntax-variables-constants-hindi/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 28 Jun 2025 17:33:53 +0000</pubDate>
				<category><![CDATA[Mojo]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1788</guid>

					<description><![CDATA[<p>इस ब्लॉग में आप सीखेंगे: Mojo में Variables और Constants कैसे बनाएँ Data types कौन-कौन से होते हैं Syntax और Examples Variable Declaration Mojo में var keyword से variable define करते हैं। Constants with let जो value change नहीं होगी, उसके लिए let keyword use करें। Mojo Types Int: पूरा number Float: दशमलव number Bool: &#8230; <a href="https://codeplaners.com/mojo-syntax-variables-constants-hindi/" class="more-link">Continue reading<span class="screen-reader-text"> "Mojo Syntax Guide in Hindi – Variables, Constants, Types Explained"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/mojo-syntax-variables-constants-hindi/">Mojo Syntax Guide in Hindi – Variables, Constants, Types Explained</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>इस ब्लॉग में आप सीखेंगे:</h3>
<ul>
<li>Mojo में Variables और Constants कैसे बनाएँ</li>
<li>Data types कौन-कौन से होते हैं</li>
<li>Syntax और Examples</li>
</ul>
<h3>Variable Declaration</h3>
<p>Mojo में <code>var</code> keyword से variable define करते हैं।</p>
<pre class="brush: xml; title: ; notranslate">var age: Int = 25
var name: String = &quot;Rahul&quot;
var isActive: Bool = True
</pre>
<h3>Constants with let</h3>
<p>जो value change नहीं होगी, उसके लिए <code>let</code> keyword use करें।</p>
<pre class="brush: xml; title: ; notranslate">let PI: Float = 3.1415
let country: String = &quot;India&quot;
</pre>
<h3>Mojo Types</h3>
<ul>
<li><code>Int</code>: पूरा number</li>
<li><code>Float</code>: दशमलव number</li>
<li><code>Bool</code>: True/False</li>
<li><code>String</code>: Text</li>
</ul>
<pre class="brush: xml; title: ; notranslate">var count: Int = 10
var price: Float = 99.99
var isAvailable: Bool = False
var message: String = &quot;Hello Mojo&quot;
</pre>
<h3>Type Annotations जरूरी हैं</h3>
<p>Mojo में type देना जरूरी है:</p>
<pre class="brush: xml; title: ; notranslate">var x: Int = 10   सही
var x = 10       गलत
</pre>
<h3>Sample Mojo Program</h3>
<pre class="brush: xml; title: ; notranslate">fn main():
    var age: Int = 20
    let country: String = &quot;India&quot;
    var price: Float = 99.5
    var isMember: Bool = True

    print(&quot;Age:&quot;, age)
    print(&quot;Country:&quot;, country)
    print(&quot;Price:&quot;, price)
    print(&quot;Is Member:&quot;, isMember)
</pre>
<p><strong>Output:</strong></p>
<pre class="brush: xml; title: ; notranslate">Age: 20
Country: India
Price: 99.5
Is Member: True
</pre>
<h3>Tips:</h3>
<ul>
<li><code>var</code>: changeable values</li>
<li><code>let</code>: constant values</li>
<li>Indentation Python जैसा</li>
</ul>
<h3>अगले ब्लॉग में:</h3>
<p>Blog 4: Mojo Functions – Define, Parameters, Return Types</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/mojo-syntax-variables-constants-hindi/">Mojo Syntax Guide in Hindi – Variables, Constants, Types Explained</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/mojo-syntax-variables-constants-hindi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Install Mojo Language 2025</title>
		<link>https://codeplaners.com/how-to-install-mojo-language-2025/</link>
					<comments>https://codeplaners.com/how-to-install-mojo-language-2025/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 26 Jun 2025 16:25:41 +0000</pubDate>
				<category><![CDATA[Mojo]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1784</guid>

					<description><![CDATA[<p>Mojo को चलाने के दो तरीके Mojo language फिलहाल दो main तरीकों से चल सकती है: Modular Playground (Online) – No Installation अगर आप जल्दी से Mojo का प्रयोग करना चाहते हैं, तो Modular का online Playground सबसे आसान तरीका है। Playground लिंक: https://www.modular.com/play कोई installation नहीं सीधे browser में code likhiye aur run kijiye &#8230; <a href="https://codeplaners.com/how-to-install-mojo-language-2025/" class="more-link">Continue reading<span class="screen-reader-text"> "How to Install Mojo Language 2025"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-install-mojo-language-2025/">How to Install Mojo Language 2025</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>Mojo को चलाने के दो तरीके</h3>
<p>Mojo language फिलहाल दो main तरीकों से चल सकती है:</p>
<h4>Modular Playground (Online) – No Installation</h4>
<p>अगर आप जल्दी से Mojo का प्रयोग करना चाहते हैं, तो <strong>Modular का online Playground</strong> सबसे आसान तरीका है।</p>
<p>Playground लिंक: <a href="https://www.modular.com/play" target="_blank" rel="noopener">https://www.modular.com/play</a></p>
<ul>
<li>कोई installation नहीं</li>
<li>सीधे browser में code likhiye aur run kijiye</li>
<li>Python interoperability bhi try kar सकते हैं</li>
</ul>
<h4>Mojo SDK via CLI (Linux/Mac Only)</h4>
<blockquote><p> Windows users के लिए CLI फिलहाल उपलब्ध नहीं है (WSL या VM से workaround किया जा सकता है)।</p></blockquote>
<h5>Installation Steps (Linux/Mac):</h5>
<h6>Step 1: Modular SDK के लिए signup</h6>
<ul>
<li>Visit: <a href="https://www.modular.com/mojo" target="_blank" rel="noopener">https://www.modular.com/mojo</a></li>
<li>Account create करके CLI key प्राप्त करें</li>
</ul>
<h6>Step 2: Modular CLI install करें</h6>
<pre class="brush: xml; title: ; notranslate">curl -L https://get.modular.com | bash</pre>
<h6>Step 3: Modular login करें</h6>
<pre class="brush: xml; title: ; notranslate">modular login</pre>
<h6>Step 4: Mojo toolchain install करें</h6>
<pre class="brush: xml; title: ; notranslate">modular install mojo</pre>
<h6>Step 5: Pehla Mojo file create करें</h6>
<pre class="brush: xml; title: ; notranslate">touch hello.mojo</pre>
<h6>Step 6: Hello World code likhiye</h6>
<pre class="brush: xml; title: ; notranslate">fn main():
    print(&quot;Hello, Mojo!&quot;)</pre>
<h6>Step 7: Program run करें</h6>
<pre class="brush: xml; title: ; notranslate">mojo hello.mojo</pre>
<hr />
<h3> Output:</h3>
<pre class="brush: xml; title: ; notranslate">Hello, Mojo!</pre>
<p>Agar yeh print hota hai, to aapka Mojo setup sahi hai <img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f389.png" alt="🎉" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<hr />
<h3>Tips:</h3>
<ul>
<li>Mojo file extension <code>.mojo</code> होता है</li>
<li><code>fn main():</code> ka मतलब है “program यहीं से शुरू होगा”</li>
<li>Python जैसी indentation-based syntax</li>
</ul>
<h3>Errors आएं तो क्या करें?</h3>
<ul>
<li>Check करें कि <code>modular</code> command install है या नहीं</li>
<li>Internet connection required है login के लिए</li>
<li>CLI version updated होनी चाहिए</li>
</ul>
<hr />
<h3>अगला ब्लॉग:</h3>
<p><strong>Blog 3: Mojo का Syntax – Variables, Constants और Types</strong></p>
<p>Series जारी रहेगी – रोजाना एक नया Mojo tutorial आपके लिए!</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-install-mojo-language-2025/">How to Install Mojo Language 2025</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-install-mojo-language-2025/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
