renovations

This commit is contained in:
Ilya Kantor 2015-03-09 18:40:33 +03:00
parent 40681dc96d
commit 0febe4f5fd
13 changed files with 30 additions and 20 deletions

View file

@ -7,7 +7,6 @@
Шпаргалка с правилами синтаксиса (детально они их варианты разобраны далее):
<img src="code-style.svg">
<!--
@ -16,7 +15,7 @@ function pow(x, n) {
var result = 1;
for (var i = 0; i < n; i++) {
result *=x;
result *= x;
}
return result;
@ -34,7 +33,6 @@ if (n < 0) {
```
-->
Не всё здесь однозначно, так что разберём эти правила подробнее.
### Фигурные скобки

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 123 KiB

Before After
Before After