Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>ZYL Programming LanguageNew to Visual Studio Code? Get it now.
ZYL Programming Language

ZYL Programming Language

FarpyOrganization

|
1 install
| (0) | Free
The ZYL Programming Language
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

The ZYL Programming Language

A modern systems programming language with C-like syntax and zero-cost abstractions.

Features

  • Performance: C-level speed, compiles to native code via LLVM
  • Simple: Clean syntax without complexity
  • Structs: With methods and default values
  • Memory: Manual control with malloc/free
  • Fast compilation: Compiles large projects in milliseconds

Example

int printf(string msg, ...);

struct Person {
    string name;
    int age;
    
    void greet(Person* self) {
        printf("Hi, I'm %s, %d years old\n", self.name, self.age)
    }
}

int main() {
    Person p = Person{"Alice", 25}
    p.greet()
    return 0
}

Syntax

  • Optional semicolons
  • Structs with methods and default values
  • For/while loops with break/continue
  • Type inference coming soon

Status

Early development. Core language complete. See examples/ for more.

License

MIT

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft