Big Project I'm making

Published: (December 20, 2025 at 11:15 PM EST)
1 min read
Source: Dev.to

Source: Dev.to

What is My Project?

Okay, but what does the syntax look like?

// examples
// if statements
if x == 5 {
    print("Hello, World")
} else {
    print("Bye, World")
}
// paradigm
struct A {
    var foo: number
}

copy A => B {
    add var bar: string = "This is a test"
}

let temp: B = B()
print(temp.bar) // prints "This is a test"

Why are you making it?

I’m still working on the AST design, but I’m starting to get into the parser side, and I’m open to feedback from people interested in programming language design. Thank you!

Back to Blog

Related posts

Read more »