aboutsummaryrefslogtreecommitdiff
path: root/syntax/NEWLINE.py
blob: d9958613b658e66e8fdb923ea4f5b30479583c39 (plain)
  1. #!/usr/bin/python3
  2. # Copyright 2025, Jonas Smedegaard <dr@jones.dk>
  3. # SPDX-License-Identifier: GPL-3+
  4. from railroad import *
  5. Diagram(
  6. Choice(0,
  7. '\\r\\n',
  8. '\\n',
  9. '\\r',
  10. ),
  11. type="complex"
  12. ).writeStandalone(sys.stdout.write)