File: hello_world_EOF.py

package info (click to toggle)
flake8-black 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 232 kB
  • sloc: python: 207; sh: 38; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
"""Print 'Hello world' to the terminal.

This is a simple test script which in the formal form has a missing final
line break - which black will add.

The point of this is the edit position will be at the very end of the file,
which is a corner case.
"""

print("Hello world")