aboutsummaryrefslogtreecommitdiff
path: root/syntax/def_SEMPREFIX.py
blob: a7fc4a0afeb59e077a00f5ed9e038538e6a96538 (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)