Skip to content

Commit 64bb62a

Browse files
authored
Merge pull request #13 from haroon10725/czech-language-support
feat: add Czech language
2 parents 3dbc77c + 7559a73 commit 64bb62a

1 file changed

Lines changed: 50 additions & 0 deletions

File tree

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
letters:
2+
start : "A"
3+
end : "Ž"
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+
"vytiskni" : "print"
23+
"jinakpokud" : "elif"
24+
"pokud" : "if"
25+
"jinak" : "else"
26+
"zatímco" : "while"
27+
"pro" : "for"
28+
"v" : "in"
29+
"vstup" : "input"
30+
"přerušit" : "break"
31+
"pokračuj" : "continue"
32+
"přeskočit" : "pass"
33+
"pravda" : "True"
34+
"nepravda" : "False"
35+
"je" : "is"
36+
"třída" : "class"
37+
"definuj" : "def"
38+
"__inicializuj__" : "__init__"
39+
"sám" : "self"
40+
"vrátit" : "return"
41+
"řetězec" : "string"
42+
"řet" : "str"
43+
"přidat" : "append"
44+
"odebrat" : "pop"
45+
"a" : "and"
46+
"nebo" : "or"
47+
"vše" : "all"
48+
"něco" : "any"
49+
"nic" : "None"
50+
"číslo" : "int"

0 commit comments

Comments
 (0)