-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathDESCRIPTION
49 lines (49 loc) · 892 Bytes
/
DESCRIPTION
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
Package: llr
Title: A lisp like language on top of R
Version: 0.3.0.9000
Authors@R:
person(given = "Dirk",
family = "Schumacher",
role = c("aut", "cre"),
email = "[email protected]")
Description: A lisp-like language that compiles to R. Just for fun.
License: MIT + file LICENSE
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Suggests:
testthat,
dplyr,
knitr
Config/testthat/edition: 3
Imports:
coro,
fastmap,
purrr,
vctrs,
digest,
rlang,
utils,
R6,
methods
Collate:
'ast-translator.R'
'format.R'
'boolean.R'
'constants.R'
'double.R'
'list.R'
'hasheq.R'
'map.R'
'reader.R'
'vector.R'
'std-lib.R'
'eval.R'
'integer.R'
'knitr.R'
'macros.R'
'namespace.R'
'nodes.R'
'string.R'
'tokenize.R'