From 145a35c008158b625225fd5d63c829df68b1c90a Mon Sep 17 00:00:00 2001 From: Phuntsok Drak-pa Date: Thu, 11 Jul 2019 04:20:27 +0200 Subject: [PATCH] added tree for verb tense, mood and aspects --- phonetics-feature-tree.scm | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/phonetics-feature-tree.scm b/phonetics-feature-tree.scm index 3f83089..bb8c211 100644 --- a/phonetics-feature-tree.scm +++ b/phonetics-feature-tree.scm @@ -112,4 +112,15 @@ ("[cor]" () ()) ("{cor}" () ())))))) -(display (to-dot cons-tree)) (newline) +(define verbs + '("[verbs]" + ("[réel]" + ("[passé]" () ()) + ("{passé}" () ())) + ("{réel}" + ("[optatif]" () ()) + ("{optatif}" + ("[passé]" () ()) + ("{passé}" () ()))))) + +(display (to-dot verbs)) (newline)