forked from janestreet/learn-ocaml-workshop
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdune
27 lines (26 loc) · 846 Bytes
/
dune
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
;; -*- Scheme -*-
(alias
(name DEFAULT)
(deps
(alias_rec 01-introduction/runtest)
(alias_rec 02-basic_types/runtest)
(alias_rec 03-define_functions/runtest)
(alias_rec 04-call_functions/runtest)
(alias_rec 05-twice/runtest)
(alias_rec 06-pattern-matching/runtest)
(alias_rec 07-simple_recursion/runtest)
(alias_rec 08-list_intro/runtest)
(alias_rec 09-list_range/runtest)
(alias_rec 10-list_product/runtest)
(alias_rec 11-sum_product/runtest)
(alias_rec 12-list_functions/runtest)
(alias_rec 13-labelled_arguments/runtest)
(alias_rec 14-variants/runtest)
(alias_rec 15-options/runtest)
(alias_rec 16-tuples/runtest)
(alias_rec 17-records/runtest)
(alias_rec 18-mutable_records/runtest)
(alias_rec 19-refs/runtest)
(alias_rec 20-anonymous_functions/runtest)
(alias_rec 21-reading_sigs/runtest)
))