@keywords a .
@prefix : <http://example.org/ns/plan3#> .
@prefix p3: <http://example.org/ns/plan3-funcs#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

<> doc "say.n3 - Function Disambiguation Test"; 
   dc:author [ foaf:homepage <http://inamidst.com/sbp/> ] .

say def (()
   (p3:say "Hello world!")
) .

main script ((say)) .

# EOF

