OILS
/
opy
/
demo
/ docstring.py
View on Github
|
oilshell.org
8 lines, 3 significant
1
"""
2
module DOCSTRING
3
"""
4
class Foo(object):
5
"""
class DOCSTRING
"""
6
def inc(self, x):
7
"""
func DOCSTRING
"""
8
return x + 1