>>106300522
I wish we had a "bind" operator or something like that to bind types to functions:
int add(int a, int b)
{
return a + b;
}
bind int add;
Then we can use it as if it's a member of the type:
int a;
int b;
a.add(b);
Of course the type can be any type including structs or onions.