Big Project I'm making
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!