diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/test.ttl | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/data/test.ttl b/data/test.ttl index 1a334b1..741d9cb 100644 --- a/data/test.ttl +++ b/data/test.ttl @@ -1,9 +1,24 @@ -@prefix : <http://codeson.net/ns/machina#> . - -<#test> - a Machine; - node [ - a Node; - midiNote 60; - duration 100; +@prefix : <http://drobilla.net/ns/machina#> . + +<> + a :Machine; + + :initialNode <#n1> ; + :node <#n2> ; + + :edge [ + :tail <#n1> ; + :head <#n2> ; ] . + + +<#n1> + a :Node ; + :midiNote 60 ; + :duration 600 . + +<#n2> + a :Node ; + :midiNote 70 ; + :duration 700 . + |