Skip to content

Instantly share code, notes, and snippets.

@dmikis
Created January 8, 2014 14:06
Show Gist options
  • Save dmikis/8317208 to your computer and use it in GitHub Desktop.
Save dmikis/8317208 to your computer and use it in GitHub Desktop.
LISP-style brackets
// не так:
function () {
someF(
a,
b
);
}
// а так:
function () {
someF(
a,
b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment