<?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: kamkow1</title>
    <description>The latest articles on DEV Community by kamkow1 (@kamkow1).</description>
    <link>https://dev.to/kamkow1</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%2F923211%2F1c5ff0ba-48ca-4b43-9e61-438cebeabb72.jpeg</url>
      <title>DEV Community: kamkow1</title>
      <link>https://dev.to/kamkow1</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/kamkow1"/>
    <language>en</language>
    <item>
      <title>I've created a programming language...</title>
      <dc:creator>kamkow1</dc:creator>
      <pubDate>Mon, 26 Sep 2022 20:17:20 +0000</pubDate>
      <link>https://dev.to/kamkow1/ive-created-a-programming-language-967</link>
      <guid>https://dev.to/kamkow1/ive-created-a-programming-language-967</guid>
      <description>&lt;p&gt;Hello,&lt;br&gt;
I'd like to share my recent project - a compiler for my own programming language called "Yup". It's implemented using LLVM 14 in Go. &lt;/p&gt;

&lt;p&gt;As of now, the language is quite primitive but more features are on the way. I've created some basic examples that show what you can do in yup: &lt;br&gt;
&lt;a href="https://github.com/kamkow1/yup/tree/master/examples"&gt;examples&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here's a small example of yup code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import "$std/io.bc";

fac(n: i32) i32 {
    if n == 0 {
        return 1;
    }

    return n * fac(n - 1);
}

main() i32 {

    var n: i32;
    scan_input("give me a number: %i", &amp;amp;n);
    fmt_print("%i! = %i", n, fac(n));

    return 0;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;checkout the full repository ;) &lt;a href="https://github.com/kamkow1/yup"&gt;https://github.com/kamkow1/yup&lt;/a&gt;&lt;/p&gt;

</description>
      <category>go</category>
      <category>programming</category>
      <category>compiler</category>
      <category>language</category>
    </item>
  </channel>
</rss>
