[parser] (wip) explicitely typing the language
This commit is contained in:
2
src/utils.ml
Normal file
2
src/utils.ml
Normal file
@@ -0,0 +1,2 @@
|
||||
let rec list_repeat n elt =
|
||||
if n = 0 then [] else elt :: (list_repeat (n-1) elt)
|
||||
Reference in New Issue
Block a user