mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 11:19:32 -06:00
38 lines
873 B
Plaintext
38 lines
873 B
Plaintext
--# -path=.:present:prelude
|
|
|
|
concrete PeaceLexExt_Eng of PeaceLexExt =
|
|
PeaceCat_Eng ** open ParadigmsEng in {
|
|
|
|
lin
|
|
|
|
-- Adjectives
|
|
dangerous_A = regA "dangerous" ;
|
|
dead_A = regA "dead" ;
|
|
hungry_A = regA "hungry" ;
|
|
large_A = regA "large" ;
|
|
sick_A = regA "sick" ;
|
|
|
|
-- Nouns
|
|
air_N = regN "air" ;
|
|
arm_N = regN "arm" ;
|
|
building_N = regN "building" ;
|
|
car_N = regN "car" ;
|
|
corpse_N = regN "corpse" ;
|
|
doctor_N = regN "doctor";
|
|
enemy_N = regN "enemy";
|
|
food_N = regN "food";
|
|
friend_N = regN "friend";
|
|
landmine_N = regN "landmine" ;
|
|
medicine_N = regN "medicine" ;
|
|
skin_N = regN "skin" ;
|
|
soldier_N = regN "soldier" ;
|
|
weapon_N = regN "weapon";
|
|
|
|
-- Verbs
|
|
cough_V = regV "cough" ;
|
|
need_V2 = dirV2 (regV "need");
|
|
own_V2 = dirV2 (regV "own") ;
|
|
show_V3 = dirdirV3 (regV "show") ;
|
|
|
|
}
|