mirror of
https://github.com/tstack/lnav
synced 2024-11-09 19:10:52 +00:00
10 lines
147 B
Python
10 lines
147 B
Python
|
# Test file for syntax-highlighting
|
||
|
|
||
|
def hello(abc):
|
||
|
"""
|
||
|
This is a multi-line string
|
||
|
|
||
|
@param abc: blah blah
|
||
|
"""
|
||
|
return abc + 1
|