<?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: Callebe Josué Cantú</title>
    <description>The latest articles on DEV Community by Callebe Josué Cantú (@callebe_josuecantu).</description>
    <link>https://dev.to/callebe_josuecantu</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%2F3958590%2F7ec35fae-97ab-4d37-95ab-39b5c897c42d.jpg</url>
      <title>DEV Community: Callebe Josué Cantú</title>
      <link>https://dev.to/callebe_josuecantu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/callebe_josuecantu"/>
    <language>en</language>
    <item>
      <title>I built my own programming language in Python (Exper Language)</title>
      <dc:creator>Callebe Josué Cantú</dc:creator>
      <pubDate>Fri, 29 May 2026 14:12:49 +0000</pubDate>
      <link>https://dev.to/callebe_josuecantu/i-built-my-own-programming-language-in-python-exper-language-3mi8</link>
      <guid>https://dev.to/callebe_josuecantu/i-built-my-own-programming-language-in-python-exper-language-3mi8</guid>
      <description>&lt;p&gt;🧠 Introduction&lt;/p&gt;

&lt;p&gt;I’ve been building my own programming language called Exper, written from scratch in Python.&lt;/p&gt;

&lt;p&gt;The goal is to understand how interpreters work internally and experiment with language design (functions, loops, expressions, and control flow).&lt;/p&gt;

&lt;p&gt;Right now, Exper is already a working mini-language capable of executing real programs.&lt;/p&gt;

&lt;p&gt;⚙️ What Exper can do so far&lt;/p&gt;

&lt;p&gt;The language already supports:&lt;/p&gt;

&lt;p&gt;Variables&lt;br&gt;
Functions (with default and named parameters)&lt;br&gt;
If / elif / else conditionals&lt;br&gt;
While and for loops&lt;br&gt;
Return, break and continue&lt;br&gt;
String interpolation using {expression}&lt;br&gt;
Lists and basic methods (append, pop, remove, insert)&lt;br&gt;
Console input/output&lt;br&gt;
Expression evaluation (including function calls inside expressions)&lt;/p&gt;

&lt;p&gt;💻 Example code in Exper&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;fn soma(a, b=10) {
    return a + b
}

console.log(soma(5))
console.log(soma(5, 20))
console.log(soma(a=7, b=3))

nome = "Callebe"
idade = 12

if (idade &amp;gt; 17) {
    console.log("{nome} is an adult.")
} else {
    console.log("{nome} is not an adult.")
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;⚙️ How it works&lt;/p&gt;

&lt;p&gt;Exper is interpreted using a custom Python engine that:&lt;/p&gt;

&lt;p&gt;Parses line-by-line execution&lt;br&gt;
Evaluates expressions using a safe evaluator&lt;br&gt;
Handles function calls with local scope simulation&lt;br&gt;
Supports nested expression evaluation&lt;br&gt;
Implements control flow using exceptions (break/continue/return)&lt;/p&gt;

&lt;p&gt;⚠️ Current challenges&lt;/p&gt;

&lt;p&gt;This project is still evolving. Some known challenges:&lt;/p&gt;

&lt;p&gt;Expression evaluation still relies partially on eval&lt;br&gt;
Function parsing and argument handling is improving&lt;br&gt;
Scope system is currently simulated (not fully isolated)&lt;br&gt;
Error messages are basic and need improvement&lt;br&gt;
String interpolation and edge cases still being refined&lt;/p&gt;

&lt;p&gt;🚀 What I want to improve next&lt;/p&gt;

&lt;p&gt;Better parser (possibly AST-based instead of eval)&lt;br&gt;
Real scope system (local/global separation)&lt;br&gt;
Better error handling system&lt;br&gt;
More operators (like XOR, increment, assignment operators)&lt;br&gt;
Structs / objects / macro-like features&lt;br&gt;
Standard library system&lt;/p&gt;

&lt;p&gt;📌 Final note&lt;/p&gt;

&lt;p&gt;This started as a small experiment and turned into a full mini interpreter.&lt;br&gt;
I’m learning a lot about how programming languages actually work under the hood.&lt;/p&gt;

&lt;p&gt;Any feedback on interpreter design, architecture or performance improvements is welcome.&lt;/p&gt;

&lt;p&gt;full source code &lt;a href="https://github.com/callebecantu2-png/exper-language-0.1.0" rel="noopener noreferrer"&gt;here&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>interpreters</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I built my own programming language in Python (Exper Language)</title>
      <dc:creator>Callebe Josué Cantú</dc:creator>
      <pubDate>Fri, 29 May 2026 14:12:49 +0000</pubDate>
      <link>https://dev.to/callebe_josuecantu/i-built-my-own-programming-language-in-python-exper-language-2682</link>
      <guid>https://dev.to/callebe_josuecantu/i-built-my-own-programming-language-in-python-exper-language-2682</guid>
      <description>&lt;p&gt;🧠 Introduction&lt;/p&gt;

&lt;p&gt;I’ve been building my own programming language called Exper, written from scratch in Python.&lt;/p&gt;

&lt;p&gt;The goal is to understand how interpreters work internally and experiment with language design (functions, loops, expressions, and control flow).&lt;/p&gt;

&lt;p&gt;Right now, Exper is already a working mini-language capable of executing real programs.&lt;/p&gt;

&lt;p&gt;⚙️ What Exper can do so far&lt;/p&gt;

&lt;p&gt;The language already supports:&lt;/p&gt;

&lt;p&gt;Variables&lt;br&gt;
Functions (with default and named parameters)&lt;br&gt;
If / elif / else conditionals&lt;br&gt;
While and for loops&lt;br&gt;
Return, break and continue&lt;br&gt;
String interpolation using {expression}&lt;br&gt;
Lists and basic methods (append, pop, remove, insert)&lt;br&gt;
Console input/output&lt;br&gt;
Expression evaluation (including function calls inside expressions)&lt;/p&gt;

&lt;p&gt;💻 Example code in Exper&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;fn soma(a, b=10) {
    return a + b
}

console.log(soma(5))
console.log(soma(5, 20))
console.log(soma(a=7, b=3))

nome = "Callebe"
idade = 12

if (idade &amp;gt; 17) {
    console.log("{nome} is an adult.")
} else {
    console.log("{nome} is not an adult.")
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;⚙️ How it works&lt;/p&gt;

&lt;p&gt;Exper is interpreted using a custom Python engine that:&lt;/p&gt;

&lt;p&gt;Parses line-by-line execution&lt;br&gt;
Evaluates expressions using a safe evaluator&lt;br&gt;
Handles function calls with local scope simulation&lt;br&gt;
Supports nested expression evaluation&lt;br&gt;
Implements control flow using exceptions (break/continue/return)&lt;/p&gt;

&lt;p&gt;⚠️ Current challenges&lt;/p&gt;

&lt;p&gt;This project is still evolving. Some known challenges:&lt;/p&gt;

&lt;p&gt;Expression evaluation still relies partially on eval&lt;br&gt;
Function parsing and argument handling is improving&lt;br&gt;
Scope system is currently simulated (not fully isolated)&lt;br&gt;
Error messages are basic and need improvement&lt;br&gt;
String interpolation and edge cases still being refined&lt;/p&gt;

&lt;p&gt;🚀 What I want to improve next&lt;/p&gt;

&lt;p&gt;Better parser (possibly AST-based instead of eval)&lt;br&gt;
Real scope system (local/global separation)&lt;br&gt;
Better error handling system&lt;br&gt;
More operators (like XOR, increment, assignment operators)&lt;br&gt;
Structs / objects / macro-like features&lt;br&gt;
Standard library system&lt;/p&gt;

&lt;p&gt;📌 Final note&lt;/p&gt;

&lt;p&gt;This started as a small experiment and turned into a full mini interpreter.&lt;br&gt;
I’m learning a lot about how programming languages actually work under the hood.&lt;/p&gt;

&lt;p&gt;Any feedback on interpreter design, architecture or performance improvements is welcome.&lt;/p&gt;

&lt;p&gt;full source code &lt;a href="https://github.com/callebecantu2-png/exper-language-0.1.0" rel="noopener noreferrer"&gt;here&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>interpreters</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
