-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathconstants.go
34 lines (33 loc) · 887 Bytes
/
constants.go
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
package constants
const (
DEFINE = "define"
BEGIN = "begin"
SET = "set!"
LAMBDA = "lambda"
LET = "let"
LET_STAR = "let*"
LET_REC = "letrec"
OPEN_PARANT = "("
CLOSE_PARANT = ")"
ADD = "+"
SUB = "-"
MULT = "*"
DIV = "/"
DOT = "."
QUOTE = "quote"
QUASIQUOTE = "quasiquote"
UNQUOTE = "unquote"
UNQUOTE_SPLICING = "unquote-splicing"
APPLY = "apply"
IF = "if"
COND = "cond"
DELAY = "delay"
FORCE = "force"
GO = "go"
CHAN_SEND = "chan<-"
CHAN_RECV = "<-chan"
SELECT = "select"
DEFAULT = "default"
SLEEP = "sleep"
RANDOM = "random"
)