Remove semicolons

Remove semicolon in head
Remove semicolon in initial
Remove semicolons in tail
This commit is contained in:
Angelos Chalaris
2020-01-03 12:54:33 +02:00
parent 0f36c17995
commit 47b718dd54
3 changed files with 4 additions and 4 deletions

View File

@ -13,5 +13,5 @@ def head(lst):
```
```py
head([1, 2, 3]); # 1
head([1, 2, 3]) # 1
```

View File

@ -13,5 +13,5 @@ def initial(lst):
```
```py
initial([1, 2, 3]); # [1,2]
initial([1, 2, 3]) # [1,2]
```

View File

@ -13,6 +13,6 @@ def tail(lst):
```
```py
tail([1, 2, 3]); # [2,3]
tail([1]); # [1]
tail([1, 2, 3]) # [2,3]
tail([1]) # [1]
```