add chunk

This commit is contained in:
Rohit Tanwar
2018-01-09 10:09:42 +05:30
parent 9910770ddc
commit a09142e1eb
4 changed files with 62 additions and 6 deletions

15
snippet_template.md Normal file
View File

@ -0,0 +1,15 @@
### 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
```