aboutsummaryrefslogtreecommitdiffstats
path: root/data/test.ttl
diff options
context:
space:
mode:
Diffstat (limited to 'data/test.ttl')
-rw-r--r--data/test.ttl32
1 files changed, 32 insertions, 0 deletions
diff --git a/data/test.ttl b/data/test.ttl
new file mode 100644
index 0000000..35e30e6
--- /dev/null
+++ b/data/test.ttl
@@ -0,0 +1,32 @@
+@prefix : <http://drobilla.net/ns/machina#> .
+
+<>
+ a :Machine;
+
+ :initialNode <#n1> ;
+ :node <#n2> ;
+ :node <#n3> ;
+
+ :edge [
+ :tail <#n1> ;
+ :head <#n2> ;
+ ] , [
+ :tail <#n1> ;
+ :head <#n3> ;
+ ] .
+
+
+<#n1>
+ a :Node ;
+ :midiNote 60 ;
+ :duration 20000 .
+
+<#n2>
+ a :Node ;
+ :midiNote 72 ;
+ :duration 10000 .
+
+<#n3>
+ a :Node ;
+ :midiNote 79 ;
+ :duration 10000 .