/usr/share/doc/libtemplates-parser-doc/examples/macro.adb is in libtemplates-parser-doc 11.8.2014-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | with Ada.Text_IO;
with Templates_Parser;
procedure Macro is
use type Templates_Parser.Vector_Tag;
Translations : Templates_Parser.Translate_Set;
begin
Templates_Parser.Insert
(Translations,
Templates_Parser.Assoc ("VAR", "Templates_Parser"));
Ada.Text_IO.Put_Line
(Templates_Parser.Parse ("macro.tmplt", Translations));
end Macro;
|