Notation3 (RDF Surfaces) to N3S precompiler
npm install n32sThe n32s code is a precompiler from Notation3 (RDF Surfaces) to a N3S format that is used by Prolog reasoners such as eye, retina and Latar.
```
yarn install
``
node js/index.js
`
$ cat demo.n3
@prefix :
@prefix log:
:Alice a :Person .
(_:X) log:onNegativeSurface {
_:X a :Person .
() log:onNegativeSurface {
_:X a :Human .
} .
} .
$ node js/index.js demo.n3
'
'
``