Files
30-seconds-of-code/snippet_template.md
Rohit Tanwar a09142e1eb add chunk
2018-01-09 10:09:42 +05:30

15 lines
209 B
Markdown

### functionName
Describe briefly what the function does
Explain your method and the functions used.
``` python
def functionName(args):
# code
return 0
```
``` python
functionName(val) # result
```