This repository was archived by the owner on Jun 17, 2022. It is now read-only.

Description
i'm going to change the syntax of member functions.
they're currently associated by being in the same module, but i think the way golang does it is simpler.
current style:
struct Foo {}
fn foo(Foo *self, int bla) {}
new style:
struct Foo {}
fn(Foo *self) foo (int bla) {}
this might also fix #123