aboutsummaryrefslogtreecommitdiff
path: root/def_SPACE.py
blob: 9a6353b8cb60ca335e0267f6bf580fee101acdeb (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. Start("complex"),
  8. "' '",
  9. End("complex")
  10. ).writeStandalone(
  11. open(splitext(basename(__file__))[0] + ".svg", "w").write)