aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--data/Makefile.am1
-rw-r--r--data/test.ttl9
2 files changed, 10 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
new file mode 100644
index 0000000..32bf715
--- /dev/null
+++ b/data/Makefile.am
@@ -0,0 +1 @@
+EXTRA_DIST = test.ttl
diff --git a/data/test.ttl b/data/test.ttl
new file mode 100644
index 0000000..1a334b1
--- /dev/null
+++ b/data/test.ttl
@@ -0,0 +1,9 @@
+@prefix : <http://codeson.net/ns/machina#> .
+
+<#test>
+ a Machine;
+ node [
+ a Node;
+ midiNote 60;
+ duration 100;
+ ] .