forked from hedyorg/hedy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keywords-pl.lark
51 lines (51 loc) · 1.79 KB
/
keywords-pl.lark
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
_DEFINE: ("define" | "define") _SPACE?
_CALL: ("call" | "call") _SPACE?
_WITH: ("with" | "with") _SPACE?
_DEF: ("def" | "def") _SPACE?
_RETURN: ("return" | "return") _SPACE?
_PRINT: ("napisz" | "print") _SPACE?
_ASK: ("zapytaj" | "ask") _SPACE?
_ECHO: ("dołącz" | "echo") _SPACE?
_FORWARD: ("naprzód" | "forward") _SPACE?
_TURN: ("obróć" | "turn") _SPACE?
left: ("lewo" | "left") _SPACE?
right: ("prawo" | "right") _SPACE?
black: ("czarny" | "black") _SPACE?
blue: ("niebieski" | "blue") _SPACE?
brown: ("brązowy" | "brown") _SPACE?
gray: ("szary" | "gray") _SPACE?
green: ("zielony" | "green") _SPACE?
orange: ("pomarańczowy" | "orange") _SPACE?
pink: ("różowy" | "pink") _SPACE?
purple: ("fioletowy" | "purple") _SPACE?
red: ("czerwony" | "red") _SPACE?
white: ("biały" | "white") _SPACE?
yellow: ("żółty" | "yellow") _SPACE?
_IS: _SPACE ("to" | "is") _SPACE
_SLEEP: ("śpij" | "sleep") _SPACE?
_ADD_LIST: ("dodaj" | "add") _SPACE
_TO_LIST: _SPACE ("do" | "to") _SPACE
_REMOVE: ("usuń" | "remove") _SPACE
_FROM: _SPACE ("z" | "from") _SPACE
_AT: _SPACE ("pozycja" | "at") _SPACE
random: ("losowa" | "random") _SPACE?
_IN: _SPACE ("w" | "in") _SPACE
_NOT_IN: _SPACE ("nie w" | "not in") _SPACE
_IF: ("jeżeli" | "if") _SPACE
_ELSE: "inaczej" | "else"
_AND: _SPACE ("i" | "and") _SPACE
_REPEAT: ("powtórz" | "repeat") _SPACE
_TIMES: _SPACE ("razy" | "times")
_FOR: ("dla" | "for") _SPACE
_RANGE: ("zakres" | "range") _SPACE?
_TO: _SPACE ("do" | "to") _SPACE
_STEP: "krok" | "step"
_ELIF: _SPACE? ("albo" | "elif") _SPACE
_INPUT: ("wprowadź" | "input")
_OR: _SPACE ("lub" | "or") _SPACE
_WHILE: ("dopóki" | "while") _SPACE
_LENGTH: "długość" | "length"
_COLOR : ("kolor" | "color") _SPACE?
_PRESSED: ("naciśnięty" | "pressed") _SPACE?
_BUTTON: ("button" | "button") _SPACE?
clear: ("wyczyść" | "clear") _SPACE?