Files
gf-core/examples/godis-tram/Tram/TramLexicon.gf
2006-11-08 15:08:09 +00:00

42 lines
446 B
Plaintext

--# -path=.:../Common:prelude:resource-1.0/abstract:resource-1.0/common
abstract TramLexicon = Cat ** {
fun
-- The functions should be in alphabetical order
-- within each category
-- Adjectives
short_A : A;
-- Conjunctions
and_then_Conj : Conj;
-- Nouns
route_N,
stop_N,
way_N : N;
-- Prepositiona
from_Prep,
to_Prep : Prep;
-- Verbs-1
help_V,
restart_V : V;
-- Verbs-2
go_from_V2,
go_to_V2,
find_V2,
findout_V2,
take_V2 : V2;
}