aboutsummaryrefslogtreecommitdiff
path: root/syntax/def_SPACE.py
blob: 102f6f4f12676cb94170d64f2a40fa256fccbb50 (plain)
  1. #!/usr/bin/python3
  2. # Copyright 2025, Jonas Smedegaard <dr@jones.dk>
  3. # SPDX-License-Identifier: GPL-3+
  4. from os.path import basename, splitext
  5. from railroad import *
  6. Diagram(
  7. "' '",
  8. type="complex"
  9. ).writeStandalone(
  10. open(splitext(basename(__file__))[0] + ".svg", "w").write)