Update if.md

parent 0d5140bf
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
**Простое условие + одна строка кода**
- В одну строку
```cssharp
```csharp
if (v <= 5) v = 10;
```
или
......@@ -8,7 +8,7 @@
if (v <= 5) { v = 10; }
```
- В две строки
```cssharp
```csharp
if (v <= 5)
v = 10;
```
......
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