Skip to content

birch-lang/birch-cpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Birch C++

This is an experimental version of the birch programming language, written in C++. The python version is about to be deprecated, so expect all of the new features to be implemented here rather than there.

Contributing

To contribute, just fork the repo and create a pull request!

I need to work on creating a formal style guide, but for now just look at the code and follow that. The only really big things that I would like to see are these:

// Bracket style:
void doSomething() {
    // variable style:
    int camelCase = 42;

    // pointer/reference style:
    std::string* hello;
}

// And for classes, please use this:
class SomethingOrOther : smth() {};
// Rather than this:
class SomethingOrOther
: smth() {};

About

A in-development version of Birch, written in C++

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages