Files
wehub-resource-sync 4e0f4422d0
build-docs / deploy (push) Has been cancelled
Check Markdown links / markdown-link-check (push) Has been cancelled
Pytest / test (3.11) (push) Has been cancelled
Pytest / test (3.12) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:25:42 +08:00

13 lines
203 B
Python

#!/usr/bin/env python3
from windowed_file import WindowedFile # type: ignore
def main():
wf = WindowedFile()
wf.scroll(wf.window)
wf.print_window()
if __name__ == "__main__":
main()