update
authorGuus Schreiber <guus.schreiber@vu.nl>
Tue, 11 Feb 2014 18:37:19 +0100
changeset 1846 f1adb0e25843
parent 1845 3ff117abfd81
child 1847 25af29f4e5ef
update
REC-drafts/REC-turtle-20140225/examples/example1.ttl
REC-drafts/REC-turtle-20140225/examples/example2.ttl
REC-drafts/REC-turtle-20140225/examples/example3.ttl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/REC-drafts/REC-turtle-20140225/examples/example1.ttl	Tue Feb 11 18:37:19 2014 +0100
@@ -0,0 +1,10 @@
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix dc: <http://purl.org/dc/elements/1.1/> .
+@prefix ex: <http://example.org/stuff/1.0/> .
+
+<http://www.w3.org/TR/rdf-syntax-grammar>
+  dc:title "RDF/XML Syntax Specification (Revised)" ;
+  ex:editor [
+    ex:fullname "Dave Beckett";
+    ex:homePage <http://purl.org/net/dajobe/>
+  ] .
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/REC-drafts/REC-turtle-20140225/examples/example2.ttl	Tue Feb 11 18:37:19 2014 +0100
@@ -0,0 +1,7 @@
+@prefix : <http://example.org/stuff/1.0/> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+:a :b
+  [ rdf:first "apple";
+    rdf:rest [ rdf:first "banana";
+               rdf:rest rdf:nil ]
+  ] .
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/REC-drafts/REC-turtle-20140225/examples/example3.ttl	Tue Feb 11 18:37:19 2014 +0100
@@ -0,0 +1,7 @@
+@prefix : <http://example.org/stuff/1.0/> .
+
+:a :b "The first line\nThe second line\n  more" .
+
+:a :b """The first line
+The second line
+  more""" .