mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 12:48:12 +07:00
9 lines
99 B
Python
9 lines
99 B
Python
"""
|
|
Module docstring.
|
|
"""
|
|
a = 'Hello, World!'
|
|
|
|
|
|
def f():
|
|
"""Function docstring."""
|
|
print(a) |