-
Notifications
You must be signed in to change notification settings - Fork 0
/
latin_alphabet.foma
27 lines (19 loc) · 1.31 KB
/
latin_alphabet.foma
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright (C) 2023 Darko Milosevic <daremc86@gmail.com>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3.0 of the License.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
define lcLVowelLetter a | e | i | o | u | y ;
define ucLVowelLetter A | E | I | O | U | Y ;
define lcLConsonantLetter b | v | g | d | đ | ź | ž | z | j | k | l | m | n | p | r | s | t | ć | f | h | c | č | ś | š | q | w | x ;
define ucLConsonantLetter B | V | G | D | Đ | Ź | Ž | Z | J | K | L | M | N | P | R | S | T | Ć | F | H | C | Č | Ś | Š | Q | W | X ;
define LVowelLetter lcLVowelLetter | ucLVowelLetter ;
define LConsonantLetter lcLConsonantLetter | ucLConsonantLetter ;
define lcLLetter lcLVowelLetter | lcLConsonantLetter ;
define ucLLetter ucLConsonantLetter | ucLConsonantLetter ;
define LLetter LVowelLetter | LConsonantLetter ;