summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/pygmentex/pygmentex_demo.pas
diff options
context:
space:
mode:
Diffstat (limited to 'macros/latex/contrib/pygmentex/pygmentex_demo.pas')
-rw-r--r--macros/latex/contrib/pygmentex/pygmentex_demo.pas7
1 files changed, 7 insertions, 0 deletions
diff --git a/macros/latex/contrib/pygmentex/pygmentex_demo.pas b/macros/latex/contrib/pygmentex/pygmentex_demo.pas
new file mode 100644
index 0000000000..5d63cc6e2d
--- /dev/null
+++ b/macros/latex/contrib/pygmentex/pygmentex_demo.pas
@@ -0,0 +1,7 @@
+Program HelloWorld(output)
+var
+ msg : String
+begin
+ msg = 'Hello, world!';
+ Writeln(msg)
+end.