Files
30-seconds-of-code/snippet-template.md
2020-09-15 16:25:15 +03:00

21 lines
354 B
Markdown

---
title: function_name
tags: utility,intermediate
---
Explain briefly what the snippet does.
- Explain briefly how the snippet works.
- Use bullet points for your snippet's explanation.
- Try to explain everything briefly but clearly.
```py
def function_name(args):
# code
return 0
```
```py
function_name(val) # result
```