flowlog-build 0.2.3

Build-time FlowLog compiler for library mode.
Documentation
1
2
3
4
5
.decl Person(id: int32, name: string)
.decl Greeting(name: string, salutation: string)
.input Person(IO="file", filename="Person.csv", delimiter=",")
.output Greeting
Greeting(name, salutation) :- Person(id, name).