Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
16
Task/Comments/Processing-Python-mode/comments.processing-py
Normal file
16
Task/Comments/Processing-Python-mode/comments.processing-py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# a single-line comment
|
||||
|
||||
"""
|
||||
Not strictly a comment, bare multi-line strings are used
|
||||
in Python as multi-line comments. They are also used as
|
||||
documentation strings or 'docstrings' when placed as the
|
||||
first element inside function or class definitions.
|
||||
"""
|
||||
|
||||
# comment out a code line
|
||||
# println("foo")
|
||||
|
||||
# comment at the end of a line
|
||||
println("foo bar") # "baz"
|
||||
|
||||
# there is no way to make an inline comment
|
||||
Loading…
Add table
Add a link
Reference in a new issue