This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Despite what's written about the Apple II version, the PC version of Bank Street Writer | |
# is a basic CGA word processor that uses ASCII-encoded files with some control codes. | |
# Files are stored without an extension, any files with an extension are password-protected. | |
# The extension is an encoded version of the password. Passwords are limited to 3 characters as a result. | |
import sys | |
control_codes = { | |
243: '{pb}', | |
244: '<c>', |
OlderNewer