bat/tests/syntax-tests/source/Plaintext
Logan Saso de47bd2323 Added newline to multicharacter line of plaintext generation script 2020-10-11 21:31:34 +02:00
..
README.md Added newline to multicharacter line of plaintext generation script 2020-10-11 21:31:34 +02:00
bat_options #1244 Use [].copy and path.exists instead of more cumbersome solutions 2020-10-11 21:31:34 +02:00
plaintext.txt #1244 Use [].copy and path.exists instead of more cumbersome solutions 2020-10-11 21:31:34 +02:00

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")