You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/tests/syntax-tests/source/Plaintext
Logan Saso de47bd2323 Added newline to multicharacter line of plaintext generation script 4 years ago
..
README.md Added newline to multicharacter line of plaintext generation script 4 years ago
bat_options #1244 Use [].copy and path.exists instead of more cumbersome solutions 4 years ago
plaintext.txt #1244 Use [].copy and path.exists instead of more cumbersome solutions 4 years ago

README.md

This text file was generated with the following script.

with open("plaintext.txt", "w"):
    for i in range(176):
        try:
            f.write(chr(i) + "\n")
        except:
            pass
    f.write("\n")
    f.write("Here is a line with multiple characters\n")