<?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: Ivy</title>
    <description>The latest articles on DEV Community by Ivy (@ivymycelia).</description>
    <link>https://dev.to/ivymycelia</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3451061%2F1b8def1e-e74e-494a-84af-70949d8609c1.png</url>
      <title>DEV Community: Ivy</title>
      <link>https://dev.to/ivymycelia</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ivymycelia"/>
    <language>en</language>
    <item>
      <title>Myco: the language born of things I love and things I don’t</title>
      <dc:creator>Ivy</dc:creator>
      <pubDate>Thu, 21 Aug 2025 21:07:37 +0000</pubDate>
      <link>https://dev.to/ivymycelia/myco-the-language-born-of-things-i-love-and-things-i-dont-aeg</link>
      <guid>https://dev.to/ivymycelia/myco-the-language-born-of-things-i-love-and-things-i-dont-aeg</guid>
      <description>&lt;h2&gt;
  
  
  🌱 Myco: a language grown from what I love (and don’t)
&lt;/h2&gt;

&lt;p&gt;When your favorite parts of programming languages clash with the bits you can’t stand, you either put up with it… or you grow something new. I chose the latter.  &lt;/p&gt;

&lt;h2&gt;
  
  
  What Myco is
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;“I hated something about every single language I’ve used, so I took my favorite bits from each and mashed them together.”&lt;br&gt;&lt;br&gt;
— &lt;em&gt;Ivy Mycelia, announcing Myco&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Myco is:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Lightweight &amp;amp; portable&lt;/strong&gt; — runs on Windows, macOS, Linux without heavy deps.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Readable&lt;/strong&gt; — clean syntax for quick learning and long-term sanity.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Efficient&lt;/strong&gt; — minimal, memory-aware C implementation.
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Flexible&lt;/strong&gt; — gentle for beginners, sharp enough for advanced use.
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  A glimpse of Myco
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;func factorial(n: int): int:
    if n &amp;lt;= 1:
        return 1;
    end
    return n * factorial(n - 1);
end

let result = factorial(5);
print("Factorial of 5 is:", result);

for i in 1:10:
    if i % 2 == 0:
        print("Even:", i);
    else:
        print("Odd:", i);
    end
end
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;Readable. Minimal. To the point.&lt;/p&gt;


&lt;h2&gt;
  
  
  Why not just use X language?
&lt;/h2&gt;

&lt;p&gt;Some are too verbose. Some too specific. Others too confusing.&lt;br&gt;
Myco takes what I liked (Lua’s simplicity, shell’s clarity) and leaves behind the rest. No cryptic macros, no gimmicks, just intent-driven code.&lt;/p&gt;


&lt;h2&gt;
  
  
  The forest as it grows
&lt;/h2&gt;

&lt;p&gt;Open-source — peek at the C code any time.&lt;/p&gt;

&lt;p&gt;Expanding — many new features are sprouting.&lt;/p&gt;

&lt;p&gt;Improving — clearer errors, richer standard library, better docs.&lt;/p&gt;


&lt;h2&gt;
  
  
  Come wander
&lt;/h2&gt;

&lt;p&gt;Curious?&lt;br&gt;
🌐 GitHub: &lt;/p&gt;
&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fassets.dev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/IvyMycelia" rel="noopener noreferrer"&gt;
        IvyMycelia
      &lt;/a&gt; / &lt;a href="https://github.com/IvyMycelia/Myco" rel="noopener noreferrer"&gt;
        Myco
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;🍄 Myco Language&lt;/h1&gt;
&lt;/div&gt;

&lt;blockquote&gt;
&lt;p&gt;A whimsical, mystical programming language rooted deep in the forest floor.&lt;br&gt;
🌿 Think C meets Lua — but with mushrooms.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Discord: &lt;a href="https://discord.gg/CR8xcKb3zM" rel="nofollow noopener noreferrer"&gt;https://discord.gg/CR8xcKb3zM&lt;/a&gt;&lt;/p&gt;




&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;🌟 What is Myco?&lt;/h2&gt;
&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Myco&lt;/strong&gt; is a lightweight, expressive scripting language designed for simplicity, readability, and just a touch of magic. Inspired by every aspect of other languages I hate and my weird obsession with Fungi, Myco is built to be both intuitive and powerful for small scripts or full programs. I did not use AI to code this project, I do not like using AI for my work as it is buggy and does not give me good results.&lt;/p&gt;




&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;🍃 Features&lt;/h2&gt;
&lt;/div&gt;

&lt;ul&gt;
&lt;li&gt;🌙 &lt;strong&gt;Clean, readable syntax&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;🔮 &lt;strong&gt;Dynamic typing&lt;/strong&gt; with &lt;code&gt;let&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;🍂 &lt;strong&gt;Functions, control flow, and loops&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;🌲 &lt;strong&gt;List and map support&lt;/strong&gt; &lt;em&gt;soon lol&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;🧪 &lt;strong&gt;Try-catch error handling&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;🧙 &lt;strong&gt;Mystical and themed syntax highlighting&lt;/strong&gt; with the Myco VS Code Extension&lt;/li&gt;
&lt;/ul&gt;




&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;🔧 Example&lt;/h2&gt;

&lt;/div&gt;

&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;
&lt;pre class="notranslate"&gt;&lt;code&gt;let name =&lt;/code&gt;&lt;/pre&gt;…&lt;/div&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/IvyMycelia/Myco" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;






&lt;p&gt;If you’re into language design, parser quirks, or just want a gentler scripting language, Myco might feel like home.&lt;/p&gt;

&lt;p&gt;I’ll be around in the comments; ask me anything. :&amp;gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>mycolang</category>
      <category>c</category>
      <category>softwaredevelopment</category>
    </item>
  </channel>
</rss>
