ggen 1.2.0

ggen is a deterministic, language-agnostic code generation framework that treats software artifacts as projections of knowledge graphs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
---
to: output.txt
rdf: entities.ttl
sparql: |
  PREFIX ex: <http://example.org/>
  SELECT ?name WHERE {
    ?person a ex:Person ;
      ex:name ?name .
  }
vars:
  - name

Hello {{name}}!