-
Notifications
You must be signed in to change notification settings - Fork 8
Coding
zetok edited this page Mar 20, 2015
·
21 revisions
Guidelines for code and contributing it.
function()
{
1st_line;
2nd_line;
}
// if / while / for
if ()
1_line;
if () {
1st_line;
2nd line;
}
- commits should have meaningful descriptions (something like
fix #123"
is not acceptable, if you want it in your commit put it in lines below) - … (WIP)
vruh