# baseURI: http://example.org/testFunction # imports: http://spinrdf.org/spl # prefix: testFunction @prefix arg: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix sp: . @prefix spin: . @prefix spl: . @prefix testFunction: . @prefix xsd: . rdf:type owl:Ontology ; owl:imports ; owl:versionInfo "Created with TopBraid Composer" ; . testFunction:fun rdf:type spin:Function ; spin:body [ rdf:type sp:Select ; sp:resultVariables ( [ sp:varName "result" ; ] ) ; sp:where ( [ rdf:type sp:Bind ; sp:expression 42 ; sp:variable [ sp:varName "result" ; ] ; ] ) ; ] ; spin:returnType xsd:integer ; rdfs:label "fun" ; rdfs:subClassOf spin:Functions ; .