File tree Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Expand file tree Collapse file tree 4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,19 @@ Eshell V11.0.3 (abort with ^G)
59
59
<< "world ">>
60
60
```
61
61
62
+ To make use of the entire standard library you'll have to run `erlc` to compile it:
63
+
64
+ ```sh
65
+ # after unzipping
66
+ $ erlc ./caramel/lib/caramel/stdlib/beam/*.erl
67
+ $ erl -pa ./caramel/lib/stdlib/beam
68
+ Erlang/OTP 23 [erts-11.0.3] [source] [64-bit] [smp:64:64] [ds:64:64:10] [async-threads:1] [hipe]
69
+
70
+ Eshell V11.0.3 (abort with ^G)
71
+ 1> caramel_runtime:binary_concat(<<"hello, ">>, <<"world!">>).
72
+ <<"hello, world!">>
73
+ ```
74
+
62
75
## Examples
63
76
64
77
You can find several examples in [`./examples`](./examples), and in
Original file line number Diff line number Diff line change 1
- 0.0.8
1
+ 0.0.14
Original file line number Diff line number Diff line change 24
24
( depends
25
25
( dune ( >= " 2.7" ) )
26
26
( ocaml ( >= " 4.11.1" ) )
27
+ cmdliner
27
28
menhir
28
29
ppx_sexp_conv
29
30
sexplib
Original file line number Diff line number Diff line change @@ -14,8 +14,9 @@ license: "Apache-2.0"
14
14
homepage: "https://github.com/AbstractMachinesLab/caramel"
15
15
bug-reports: "https://github.com/AbstractMachinesLab/caramel/issues"
16
16
depends: [
17
- "dune" {>= "2.7" & >= "2.7" }
17
+ "dune" {>= "2.7" }
18
18
"ocaml" {>= "4.11.1"}
19
+ "cmdliner"
19
20
"menhir"
20
21
"ppx_sexp_conv"
21
22
"sexplib"
You can’t perform that action at this time.
0 commit comments