Skip to content

Commit a50f19b

Browse files
committed
added suppourt for french
1 parent bbf4e92 commit a50f19b

2 files changed

Lines changed: 51 additions & 0 deletions

File tree

universalpython/languages/fr/__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+
extra : "éèêëàâîïôùûç"
5+
6+
numbers:
7+
start : "0"
8+
end : "9"
9+
10+
reserved:
11+
"." : "."
12+
"," : ","
13+
"1" : "1"
14+
"2" : "2"
15+
"3" : "3"
16+
"4" : "4"
17+
"5" : "5"
18+
"6" : "6"
19+
"7" : "7"
20+
"8" : "8"
21+
"9" : "9"
22+
"0" : "0"
23+
"imprimer" : "print"
24+
"sinonsi" : "elif"
25+
"si" : "if"
26+
"sinon" : "else"
27+
"pendant" : "while"
28+
"pour" : "for"
29+
"dans" : "in"
30+
"entrée" : "input"
31+
"casser" : "break"
32+
"continuer" : "continue"
33+
"passer" : "pass"
34+
"Vrai" : "True"
35+
"Faux" : "False"
36+
"est" : "is"
37+
"classe" : "class"
38+
"déf" : "def"
39+
"__init__" : "__init__"
40+
"auto" : "self"
41+
"retour" : "return"
42+
"chaîne ": "string"
43+
"chn" : "str"
44+
"ajouter" : "append"
45+
"pop" : "pop"
46+
"et" : "and"
47+
"ou" : "or"
48+
"tous" : "all"
49+
"au_moins_un" : "any"
50+
"Aucun" : "None"
51+
"ent" : "int"

0 commit comments

Comments
 (0)