Files
30-seconds-of-code/snippet_template.md
2019-08-20 09:37:34 +02:00

19 lines
228 B
Markdown

---
title: function_name
tags:
---
Explain briefly what the snippet does.
Explain briefly how the snippet works.
```py
def function_name(args):
# code
return 0
```
```py
functionName(val) # result
```