X Tutup
Skip to content

Commit 515c275

Browse files
authored
Merge pull request #58 from SohaibBazaz/add-my-language
Added Kashmiri (Koshur) Language support
2 parents 9e29d61 + e14950d commit 515c275

File tree

4 files changed

+102
-0
lines changed

4 files changed

+102
-0
lines changed

universalpython/languages/ks/__init__.py

Whitespace-only changes.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
letters:
2+
start : "a"
3+
end : "z"
4+
5+
numbers:
6+
start : "0"
7+
end : "9"
8+
9+
reserved:
10+
"." : "."
11+
"," : ","
12+
"1" : "1"
13+
"2" : "2"
14+
"3" : "3"
15+
"4" : "4"
16+
"5" : "5"
17+
"6" : "6"
18+
"7" : "7"
19+
"8" : "8"
20+
"9" : "9"
21+
"0" : "0"
22+
"wan" : "print"
23+
"telagar" : "elif"
24+
"yeli" : "if"
25+
"teli" : "else"
26+
"yotanit" : "while"
27+
"kar" : "for"
28+
"mez" : "in"
29+
"atsun" : "input"
30+
"phutrao" : "break"
31+
"bronth" : "continue"
32+
"trao" : "pass"
33+
"poz" : "True"
34+
"apuz" : "False"
35+
"chu" : "is"
36+
"klas" : "class"
37+
"vazahat" : "def"
38+
"__aghaz__" : "__init__"
39+
"be" : "self"
40+
"wapis" : "return"
41+
"panay" : "string"
42+
"pan" : "str"
43+
"milao" : "append"
44+
"kar" : "pop"
45+
"beyi" : "and"
46+
"ya" : "or"
47+
"sairy" : "all"
48+
"kahti" : "any"
49+
"kahna" : "None"
50+
"shumar" : "int"
51+
"__aham__" : "__main__"

universalpython/languages/ks_arb/__init__.py

Whitespace-only changes.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
letters:
2+
start : "ا"
3+
end : "ی"
4+
5+
numbers:
6+
start : "۰"
7+
end : "۹"
8+
9+
reserved:
10+
"۔" : "."
11+
"،" : ","
12+
"۱" : "1"
13+
"۲" : "2"
14+
"۳" : "3"
15+
"۴" : "4"
16+
"۵" : "5"
17+
"۶" : "6"
18+
"۷" : "7"
19+
"۸" : "8"
20+
"۹" : "9"
21+
"۰" : "0"
22+
"وَن" : "print"
23+
"تیلگر" : "elif"
24+
"ییٚلہِ" : "if"
25+
"تیٚلہِ" : "else"
26+
"یوتنِت" : "while"
27+
"کَر" : "for"
28+
"میز" : "in"
29+
"اَتھُن" : "input"
30+
"فُٹراو" : "break"
31+
"برونٛتھ" : "continue"
32+
"ترٛاو" : "pass"
33+
"پوز" : "True"
34+
"اَپوز" : "False"
35+
"چھُ" : "is"
36+
"کلاس" : "class"
37+
"وضاحت" : "def"
38+
"__آغاز__" : "__init__"
39+
"بہٕ" : "self"
40+
"واپس" : "return"
41+
"پنے" : "string"
42+
"پن" : "str"
43+
"مِلاو" : "append"
44+
"کَر" : "pop"
45+
"بیٚی" : "and"
46+
"یا" : "or"
47+
"سٲری" : "all"
48+
"کَتھی" : "any"
49+
"کہنا" : "None"
50+
"شُمار" : "int"
51+
"__اہم__" : "__main__"

0 commit comments

Comments
 (0)
X Tutup