From ed85b5c7d96e40ada730614cb69776672738c87b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 1 Feb 2007 05:07:13 +0000 Subject: Partially implemented loading (from RDF files). git-svn-id: http://svn.drobilla.net/lad/machina@272 a436a847-0d15-0410-975c-d299462d15a1 --- data/test.ttl | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) (limited to 'data') 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 : . - -<#test> - a Machine; - node [ - a Node; - midiNote 60; - duration 100; +@prefix : . + +<> + 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 . + -- cgit v1.2.1