1
0
mirror of https://github.com/sharkdp/bat synced 2026-07-12 15:13:18 +00:00
Files
sharkdp--bat/tests/syntax-tests/source/Plaintext/README.md
T

13 lines
285 B
Markdown
Vendored

This text file was generated with the following script.
```python
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")
```