Commit 16740d79 authored by Нурмухаметов Вадим Наилович's avatar Нурмухаметов Вадим Наилович
Browse files

test

parents
**Простое условие + одна строка кода**
- В одну строку
```cssharp
if (v <= 5) v = 10;
```
или
```cssharp
if (v <= 5) { v = 10; }
```
- В две строки
```cssharp
if (v <= 5)
v = 10;
```
или
```cssharp
if (v <= 5)
{
v = 10;
}
```
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment