# Some knowledge about the world. @prefix : <#>. :w :staff :d. :d a :Person; :name "Dan\\nConnolly". :w a :Organization; :tla "W3C". # Rules for making a diagram... @prefix g: . @prefix log: . @prefix u: . :staff a g:EdgeProperty; g:label "Technical Staff". this log:forAll :n, :str. { :n a :Person; :name :str } log:implies { :n g:label :str }. { :n a :Organization; :tla :str } log:implies { :n g:label :str; g:style "filled"; g:color "blue"; g:fontcolor "white"; g:fontsize "20" }. # bookkeeping... <> g:digraph [ g:hasNode :d, :w; # g:label "$Revision: 1.4 $ of $Date: 2002/05/03 20:25:36 $"; # g:rankdir "LR" ].