Skip to content

Commit f21bd3c

Browse files
authored
Merge pull request #65 from speedyk-005/feat/add-haitian-creole-support
feat: add Haitian Creole language support
2 parents 64d48a2 + 9b3946c commit f21bd3c

3 files changed

Lines changed: 56 additions & 0 deletions

File tree

test/samples/ht/sample.ht.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
enprime("Bonjou lemond")

universalpython/languages/ht/__init__.py

Whitespace-only changes.
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
aliases:
2+
- "pythoniniversèl"
3+
- "pythonkreyòl"
4+
5+
letters:
6+
start : "a"
7+
end : "z"
8+
extra : "éèàòì"
9+
10+
numbers:
11+
start : "0"
12+
end : "9"
13+
14+
reserved:
15+
"." : "."
16+
"," : ","
17+
"1" : "1"
18+
"2" : "2"
19+
"3" : "3"
20+
"4" : "4"
21+
"5" : "5"
22+
"6" : "6"
23+
"7" : "7"
24+
"8" : "8"
25+
"9" : "9"
26+
"0" : "0"
27+
"enprime" : "print"
28+
"sinonsi" : "elif"
29+
"si" : "if"
30+
"sinon" : "else"
31+
"pandan" : "while"
32+
"pou" : "for"
33+
"nan" : "in"
34+
"antre" : "input"
35+
"kanpe" : "break"
36+
"kontinye" : "continue"
37+
"pase" : "pass"
38+
"Vrè" : "True"
39+
"Fo" : "False"
40+
"se" : "is"
41+
"klas" : "class"
42+
"def" : "def"
43+
"__init__" : "__init__"
44+
"oto" : "self"
45+
"retounen" : "return"
46+
"chèn": "string"
47+
"chn" : "str"
48+
"ajoute" : "append"
49+
"rale" : "pop"
50+
"e" : "and"
51+
"ou" : "or"
52+
"tout" : "all"
53+
"nenpòt" : "any"
54+
"Anyen" : "None"
55+
"antye" : "int"

0 commit comments

Comments
 (0)