aboutsummaryrefslogtreecommitdiff
path: root/syntax/SEMPREFIX.py
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/SEMPREFIX.py')
-rwxr-xr-xsyntax/SEMPREFIX.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/syntax/SEMPREFIX.py b/syntax/SEMPREFIX.py
new file mode 100755
index 0000000..c1048f0
--- /dev/null
+++ b/syntax/SEMPREFIX.py
@@ -0,0 +1,11 @@
+#!/usr/bin/python3
+
+# Copyright 2025, Jonas Smedegaard <dr@jones.dk>
+# SPDX-License-Identifier: GPL-3+
+
+from railroad import *
+
+Diagram(
+ Group("[.=]"),
+ type="complex"
+).writeStandalone(sys.stdout.write)